一款基于css3的动画按钮代码教程


Posted in HTML / CSS onNovember 23, 2014

三水点靠木之前为大家分享了很多款纯css3实现的实用按钮。今天给大家带来一款基于css3的动画按钮。实现的效果图如下:

一款基于css3的动画按钮代码教程

实现的代码。

html代码:

XML/HTML Code复制内容到剪贴板
  1. <div class="share-buttons">  
  2.         <div class="share-button">  
  3.             <div class="share-button-secondary">  
  4.                 <div class="share-button-secondary-content">  
  5.                     share on twitter   
  6.                 </div>  
  7.             </div>  
  8.             <div class="share-button-primary">  
  9.                 <i class="share-button-icon fa fa-twitter"></i>  
  10.             </div>  
  11.         </div>  
  12.         <div class="share-button">  
  13.             <div class="share-button-secondary">  
  14.                 <div class="share-button-secondary-content">  
  15.                     share on facebook   
  16.                 </div>  
  17.             </div>  
  18.             <div class="share-button-primary">  
  19.                 <i class="share-button-icon fa fa-facebook"></i>  
  20.             </div>  
  21.         </div>  
  22.         <div class="share-button">  
  23.             <div class="share-button-secondary">  
  24.                 <div class="share-button-secondary-content">  
  25.                     pin on pinterest   
  26.                 </div>  
  27.             </div>  
  28.             <div class="share-button-primary">  
  29.                 <i class="share-button-icon fa fa-pinterest"></i>  
  30.             </div>  
  31.         </div>  
  32.         <div class="share-button">  
  33.             <div class="share-button-secondary">  
  34.                 <div class="share-button-secondary-content">  
  35.                     share on tumblr   
  36.                 </div>  
  37.             </div>  
  38.             <div class="share-button-primary">  
  39.                 <i class="share-button-icon fa fa-tumblr"></i>  
  40.             </div>  
  41.         </div>  
  42.         <div class="share-button">  
  43.             <div class="share-button-secondary">  
  44.                 <div class="share-button-secondary-content">  
  45.                     share on google+   
  46.                 </div>  
  47.             </div>  
  48.             <div class="share-button-primary">  
  49.                 <i class="share-button-icon fa fa-google-plus"></i>  
  50.             </div>  
  51.         </div>  
  52.     </div>  

css3代码:

CSS Code复制内容到剪贴板
  1. body   
  2.         {   
  3.             background: -webkit-linear-gradient(0deg, #FF8008 10%, #FFC837 90%);   
  4.             background: linear-gradient(90deg, #FF8008 10%, #FFC837 90%);   
  5.             padding: 2em;   
  6.             text-aligncenter;   
  7.         }   
  8.            
  9.         *   
  10.         {   
  11.             -moz-box-sizing: border-box;   
  12.             box-sizing: border-box;   
  13.         }   
  14.            
  15.         .share-buttons   
  16.         {   
  17.             positionabsolute;   
  18.             width300px;   
  19.             height212px;   
  20.             padding-left135px;   
  21.             top: 50%;   
  22.             left: 50%;   
  23.             margin-left: -150px;   
  24.             margin-top: -106px;   
  25.         }   
  26.         .share-buttons .share-button   
  27.         {   
  28.             floatleft;   
  29.             margin-top15px;   
  30.         }   
  31.         .share-buttons .share-button:first-child   
  32.         {   
  33.             margin-top: 0;   
  34.         }   
  35.         .share-buttons .share-button:after   
  36.         {   
  37.             clearboth;   
  38.             display: table;   
  39.         }   
  40.            
  41.         .share-button   
  42.         {   
  43.             displayblock;   
  44.             positionrelative;   
  45.             height30px;   
  46.         }   
  47.         .share-button:hover   
  48.         {   
  49.             cursorpointer;   
  50.         }   
  51.         .share-button:hover .share-button-primary   
  52.         {   
  53.             box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1);   
  54.         }   
  55.         .share-button:hover .share-button-secondary-content  
  56.         {   
  57.             -webkit-transform: translate3d(0, 0, 0);   
  58.             transform: translate3d(0, 0, 0);   
  59.         }   
  60.            
  61.         .share-button-primary   
  62.         {   
  63.             positionabsolute;   
  64.             background#fff;   
  65.             width30px;   
  66.             height30px;   
  67.             border-radius: 15px;   
  68.             left: 0;   
  69.             top: 50%;   
  70.             margin-top: -15px;   
  71.         }   
  72.            
  73.         .share-button-icon  
  74.         {   
  75.             displayblock;   
  76.             color#242424;   
  77.             positionabsolute;   
  78.             width30px;   
  79.             line-height30px;   
  80.             font-size16px;   
  81.             margin-top1px;   
  82.         }   
  83.            
  84.         .share-button-secondary   
  85.         {   
  86.             overflowhidden;   
  87.             margin-left15px;   
  88.             height30px;   
  89.         }   
  90.            
  91.         .share-button-secondary-content  
  92.         {   
  93.             font-familysans-serif;   
  94.             font-size: .75em;   
  95.             background#fff;   
  96.             displayblock;   
  97.             height30px;   
  98.             text-alignleft;   
  99.             padding-left24px;   
  100.             padding-right18px;   
  101.             line-height30px;   
  102.             color#242424;   
  103.             border-radius: 0 15px 15px 0;   
  104.             -webkit-transform: translate3d(-100%, 0, 0);   
  105.             transform: translate3d(-100%, 0, 0);   
  106.             -webkit-transition: -webkit-transform 175ms ease;   
  107.             transition: transform 175ms ease;   
  108.         }  

 相关推荐:

HTML / CSS 相关文章推荐
分享CSS3制作卡片式图片的方法
Jul 08 HTML / CSS
CSS3 仿微信聊天小气泡实例代码
Apr 05 HTML / CSS
CSS3实现全景图特效示例代码
Mar 26 HTML / CSS
html5使用Canvas绘图的使用方法
Nov 21 HTML / CSS
HTML5的革新 结构之美
Jun 20 HTML / CSS
只要五步 就可以用HTML5/CSS3快速制作便签贴特效(图)
Jun 04 HTML / CSS
简单介绍HTML5中的文件导入
May 08 HTML / CSS
H5调用相机拍照并压缩图片的实例代码
Jul 20 HTML / CSS
详解H5 活动页之移动端 REM 布局适配方法
Dec 07 HTML / CSS
总结html5自定义属性有哪些
Apr 01 HTML / CSS
h5封装下拉刷新
Aug 25 HTML / CSS
详解HTML5布局和HTML5标签
Oct 26 HTML / CSS
五款漂亮的纯CSS3动画按钮的实例教程
Nov 21 #HTML / CSS
html5+css3之动画在webapp中的应用
Nov 21 #HTML / CSS
一款恶搞头像特效的制作过程 利用css3和jquery
Nov 21 #HTML / CSS
html5+css3之CSS中的布局与Header的实现
Nov 21 #HTML / CSS
html5+css3气泡组件的实现
Nov 21 #HTML / CSS
纯css3实现的动画按钮的实例教程
Nov 17 #HTML / CSS
实列教程 一款基于jquery和css3的响应式二级导航菜单
Nov 13 #HTML / CSS
You might like
PHPMailer安装方法及简单实例
2008/11/25 PHP
浅析关于PHP位运算的简单权限设计
2013/06/30 PHP
php防止sql注入代码实例
2013/12/18 PHP
smarty模板中使用get、post、request、cookies、session变量的方法
2014/04/24 PHP
phplot生成图片类用法详解
2015/01/06 PHP
php中switch语句用法详解
2015/08/17 PHP
PHP中PDO连接数据库中各种DNS设置方法小结
2016/05/13 PHP
laravel model模型定义实现开启自动管理时间created_at,updated_at
2019/10/17 PHP
javascript parseInt 函数分析(转)
2009/03/21 Javascript
jQuery .tmpl(), .template()学习资料小结
2011/07/18 Javascript
原生JS实现轮播效果+学前端的感受(防止走火入魔)
2016/08/21 Javascript
如何解决IONIC页面底部被遮住无法向上滚动问题
2016/09/06 Javascript
JS实现“隐藏与显示”功能(多种方法)
2016/11/24 Javascript
javascript使用递归算法求两个数字组合功能示例
2017/01/03 Javascript
详解webpack自动生成html页面
2017/06/29 Javascript
jQuery实现的3D版图片轮播示例【滑动轮播】
2019/01/18 jQuery
15分钟深入了解JS继承分类、原理与用法
2019/01/19 Javascript
JavaScript 判断数据类型的4种方法
2020/09/11 Javascript
[42:25]EG vs Spirit Supermajor 败者组 BO3 第二场 6.4
2018/06/05 DOTA
python启动办公软件进程(word、excel、ppt、以及wps的et、wps、wpp)
2009/04/09 Python
Python中使用Tkinter模块创建GUI程序实例
2015/01/14 Python
安装2019Pycharm最新版本的教程详解
2019/10/22 Python
解决python ThreadPoolExecutor 线程池中的异常捕获问题
2020/04/08 Python
python调用摄像头的示例代码
2020/09/28 Python
matplotlib更改窗口图标的方法示例
2021/02/03 Python
基于CSS3的CSS 多栏(Multi-column)实现瀑布流源码分享
2014/06/11 HTML / CSS
HTML5拖放API实现自动生成相框功能
2020/04/07 HTML / CSS
英国潮流网站:END.(全球免邮)
2017/01/16 全球购物
高二化学教学反思
2014/01/30 职场文书
企业文化标语口号
2014/06/09 职场文书
标准大学生职业生涯规划书写作指南
2014/09/18 职场文书
工程部岗位职责
2015/02/10 职场文书
博士导师推荐信
2015/03/25 职场文书
李清照的诗词赏析(20首)
2019/08/22 职场文书
《悲惨世界》:比天空更广阔的是人的心灵
2020/01/16 职场文书
Windows Server 2008 修改远程登录端口以及配置防火墙
2022/04/28 Servers