一款纯css3实现的动画按钮_html/css_WEB-ITnose
程序员文章站
2024-01-16 17:05:40
...
今天给大家分享一款纯css3实现的动画按钮。第一排的按钮当鼠标经过的背景色动画切换,图标从右侧飞入,第二排的按钮当鼠标经过的时候边框动画切换,图标右侧飞入,效果非常好,一起看下效果图:
在线预览 源码下载
实现的代码。
html代码:
css3代码:
body { } h1 { font-family: "Abril Titling" , Georgia, serif; color: #f9f9f9; letter-spacing: 1px; } body div { padding: 60px 0; text-align: center; height: 80px; margin-top: 0; } .black { background: #262D28; } .white { background: #f9f9f9; } a { display: inline-block; margin: 10px; } .btn { position: relative; width: 160px; padding: 1.2rem 3rem; border: 1px solid #0AA944; font-size: 15px; text-decoration: none; color: #f9f9f9; font-family: "Tablet Gothic" , sans-serif; text-transform: uppercase; font-weight: 300; letter-spacing: 1.5px; -webkit-transition: all .2s ease-out; -moz-transition: all .2s ease-out; -ms-transition: all .2s ease-out; -o-transition: all .2s ease-out; transition: all .2s ease-out; } .white .btn { color: #262D28; border: 2px solid #0AA944; } .btn span { position: relative; top: 2px; left: 0; -webkit-transition: all .3s ease-out; -moz-transition: all .3s ease-out; -ms-transition: all .3s ease-out; -o-transition: all .3s ease-out; transition: all .3s ease-out; } .btn i { opacity: 0; position: absolute; margin-top: -21px; top: 2.5rem; left: 120%; -webkit-transition: all .3s ease-out; -moz-transition: all .3s ease-out; -ms-transition: all .3s ease-out; -o-transition: all .3s ease-out; transition: all .3s ease-out; } .btn:hover { background: rgba(255,255,255, .9); border: 1px solid rgba(0,0,0,1); } .white .btn:hover { background: rgba(0,0,0, .02); border: 2px solid rgba(0,0,0,1); } .btn:hover span { color: #333; left: -20px; } a.btn:hover i { opacity: 1; left: 80%; color: #333; -webkit-transform: scale(1.2); } a.btn:hover .up { -webkit-transform: rotate(270deg); } a.btn:hover .down { -webkit-transform: rotate(90deg); }
上一篇: ThinkPHP多表联合查询的常用方法
下一篇: Discuz插件漏洞攻击
推荐阅读
-
一款纯css3实现的动画按钮_html/css_WEB-ITnose
-
CSS3实例: 实现 swap 动画_html/css_WEB-ITnose
-
css3动画简介以及动画库animate.css的使用_html/css_WEB-ITnose
-
CSS3实现的div元素水平运动指定距离_html/css_WEB-ITnose
-
css3实现的圆角效果代码实例_html/css_WEB-ITnose
-
在帖子中点击“回复”按钮时,跳到本页面回复的表单位置,是怎么实现的?_html/css_WEB-ITnose
-
CSS3实现苹果电脑的DOCK菜单栏_html/css_WEB-ITnose
-
css3的基础用法,新手必看哈(还有css3和jquery动画的对比)_html/css_WEB-ITnose
-
让ICON生动起来 纯CSS实现带动画的天气图标_html/css_WEB-ITnose
-
求一个简单的纯CSS3的实现_html/css_WEB-ITnose