文章点赞按钮带加一动画效果代码
代码语言: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-animation: mypraise 0.5s ; /* Opera */ font-style:normal; } .praise .hover , #add-num .add-animation.hover , #praise-txt.hover{ color: #EB4F38; } /*鐐硅禐鍥炬爣鏀惧ぇ鍔ㄧ敾寮€濮�*/ @keyframes myfirst { 0%{ width:40px; height:40px; } 50%{ width:50px; height:50px; } 100% { width:40px; height:40px; } } @-moz-keyframes myfirst /* Firefox */ { 0%{ width:40px; height:40px; } 50%{ width:50px; height:50px; } 100% { width:40px; height:40px; } } @-webkit-keyframes myfirst /* Safari 鍜� Chrome */ { 0%{ width:40px; height:40px; } 50%{ width:50px; height:50px; } 100% { width:40px; height:40px; } } @-o-keyframes myfirst /* Opera */ { 0%{ width:40px; height:40px; } 50%{ width:50px; height:50px; } 100% { width:40px; height:40px; } } /*鐐硅禐鍥炬爣鏀惧ぇ鍔ㄧ敾缁撴潫*/ /*鐐硅禐鏁伴噺鍔犲噺鍔ㄧ敾寮€濮�*/ @keyframes mypraise { 0%{ top:-15px; opacity: 0; filter: Alpha(opacity=0); -moz-opacity:0; } 25%{ top:-20px; opacity: 0.5; filter: Alpha(opacity=50); -moz-opacity:0.5; } 50%{ top:-25px; opacity: 1; filter: Alpha(opacity=100); -moz-opacity:1; } 75%{ top:-30px; opacity: 0.5; filter: Alpha(opacity=50); -moz-opacity:0.5; } 100% { top:-35px; opacity: 0; filter: Alpha(opacity=0); -moz-opacity:0; } } @-moz-keyframes mypraise /* Firefox */ { 0%{ top:-15px; opacity: 0; filter: Alpha(opacity=0); -moz-opacity:0; } 25%{ top:-20px; opacity: 0.5; filter: Alpha(opacity=50); -moz-opacity:0.5; } 50%{ top:-25px; opacity: 1; filter: Alpha(opacity=100); -moz-opacity:1; } 75%{ top:-30px; opacity: 0.5; filter: Alpha(opacity=50); -moz-opacity:0.5; } 100% { top:-35px; .........完整代码请登录后点击上方下载按钮下载查看
网友评论0