文章点赞按钮带加一动画效果代码
代码语言:html
所属分类:表单美化
代码描述:文章点赞按钮带加一动画效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html>
<head>
<style>
body{
margin:0;
padding:50px;
}
/*鍔ㄦ€佺偣璧炲紑濮�*/
.praise{
width:40px;
height:40px;
margin: 50px auto;
cursor: pointer;
font-size: 12px;
text-align:center;
position: relative;
}
#praise{
display:block;
width:40px;
height:40px;
margin:0 auto;
}
#praise-txt{
height:25px;
line-height:25px;
display: block;
}
.praise img{
width:40px;
height:40px;
display:block;
margin: 0 auto;
}
.praise img.animation{
animation: myfirst 0.5s;
-moz-animation: myfirst 0.5s; /* Firefox */
-webkit-animation: myfirst 0.5s; /* Safari 鍜� Chrome */
-o-animation: myfirst 0.5s; /* Opera */
}
#add-num{
display:none;
}
#add-num .add-animation{
color: #000;
position:absolute;
top:-15px;
left: 10px;
font-size: 15px;
opacity: 0;
filter: Alpha(opacity=0);
-moz-opacity:0;
animation: mypraise 0.5s ;
-moz-animation: mypraise 0.5s ; /* Firefox */
-webkit-animation: mypraise 0.5s ; /* Safari 鍜� Chrome */
-o-animati.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0