欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

五款漂亮的纯CSS3动画按钮的实例教程

程序员文章站 2022-06-18 16:06:19
今天我们来分享五款很不错的CSS3按钮动画,每一种都是鼠标滑过动画形式,虽然这些动画按钮不是十分华丽,但是小编觉得不像其他按钮那样很难扩展,我们可以修改CSS代码随意改变自己喜... 14-11-21...

  今天来分享很不错的css3按钮动画,这款css3按钮一共有5种动画方式,每一种都是鼠标滑过动画形式,虽然这些动画按钮不是十分华丽,但是小编觉得不像其他按钮那样很难扩展,我们可以修改css代码随意改变自己喜欢的颜色样式。

五款漂亮的纯CSS3动画按钮的实例教程

  让我们一起来看看实现这5中样式动画按钮的html代码和css代码吧。以第一个按钮为例,其他按钮的代码大家可以下载源代码来研究,并不是很难。

  html代码:

xml/html code复制内容到剪贴板
  1. <div class="button01">  
  2.       <a href="#">download</a>  
  3.       <p class="top">click to begin</p>  
  4.       <p class="bottom">1.2mb .zip</p>  
  5. </div>  

  css代码:

css code复制内容到剪贴板
  1. .button01 {   
  2.   width200px;   
  3.   margin50px auto 20px auto;   
  4. }   
  5.   
  6. .button01 a {   
  7.   displayblock;   
  8.   height50px;   
  9.   width200px;   
  10.   
  11.   /*type*/  
  12.   colorwhite;   
  13.   font17px/50px helveticaverdanasans-serif;   
  14.   text-decorationnone;   
  15.   text-aligncenter;   
  16.   text-transformuppercase;   
  17.   
  18.   /*gradient*/     
  19.   background#00b7ea/* old browsers */  
  20.   background: -moz-linear-gradient(top#00b7ea 0%, #009ec3 100%); /* ff3.6+ */  
  21.   background: -webkit-gradient(linear, left topleft bottombottomcolor-stop(0%,#00b7ea), color-stop(100%,#009ec3)); /* chrome,safari4+ */  
  22.   background: -webkit-linear-gradient(top#00b7ea 0%,#009ec3 100%); /* chrome10+,safari5.1+ */  
  23.   background: -o-linear-gradient(top#00b7ea 0%,#009ec3 100%); /* opera 11.10+ */  
  24.   background: -ms-linear-gradient(top#00b7ea 0%,#009ec3 100%); /* ie10+ */  
  25.   background: linear-gradient(top#00b7ea 0%,#009ec3 100%); /* w3c */  
  26.   filter: progid:dximagetransform.microsoft.gradient( startcolorstr='#00b7ea', endcolorstr='#009ec3',gradienttype=0 ); /* ie6-9 */  
  27. }   
  28.   
  29. .button01 a, p {   
  30.     -webkit-border-radius: 10px;   
  31.      -moz-border-radius: 10px;   
  32.           border-radius: 10px;   
  33.   
  34.   -webkit-box-shadow: 2px 2px 8px rgba(0,0,0,0.2);   
  35.      -moz-box-shadow: 2px 2px 8px rgba(0,0,0,0.2);   
  36.           box-shadow: 2px 2px 8px rgba(0,0,0,0.2);   
  37. }   
  38.   
  39. p {   
  40.   background#222;   
  41.   displayblock;   
  42.   height40px;   
  43.   width180px;    
  44.   margin: -50px 0 0 10px;   
  45.   
  46.   /*type*/  
  47.   text-aligncenter;   
  48.   font12px/45px helveticaverdanasans-serif;   
  49.   color#fff;   
  50.   
  51.   /*position*/  
  52.   positionabsolute;   
  53.   z-index: -1;   
  54.   
  55.   /*transition*/     
  56.   -webkit-transition: margin 0.5s ease;   
  57.      -moz-transition: margin 0.5s ease;   
  58.        -o-transition: margin 0.5s ease;   
  59.       -ms-transition: margin 0.5s ease;   
  60.           transition: margin 0.5s ease;   
  61. }   
  62.   
  63. /*hover*/  
  64. .button01:hover .bottombottom {   
  65.   margin: -10px 0 0 10px;   
  66. }   
  67.   
  68. .button01:hover .top {   
  69.   margin: -80px 0 0 10px;   
  70.   line-height35px;   
  71. }   
  72.   
  73. /*active*/  
  74. .button01 a:active {   
  75.       background#00b7ea/* old browsers */  
  76.       background: -moz-linear-gradient(top,  #00b7ea 36%, #009ec3 100%); /* ff3.6+ */  
  77.       background: -webkit-gradient(linear, left topleft bottombottomcolor-stop(36%,#00b7ea), color-stop(100%,#009ec3)); /* chrome,safari4+ */  
  78.       background: -webkit-linear-gradient(top,  #00b7ea 36%,#009ec3 100%); /* chrome10+,safari5.1+ */  
  79.       background: -o-linear-gradient(top,  #00b7ea 36%,#009ec3 100%); /* opera 11.10+ */  
  80.       background: -ms-linear-gradient(top,  #00b7ea 36%,#009ec3 100%); /* ie10+ */  
  81.       background: linear-gradient(top,  #00b7ea 36%,#009ec3 100%); /* w3c */  
  82.       filter: progid:dximagetransform.microsoft.gradient( startcolorstr='#00b7ea', endcolorstr='#009ec3',gradienttype=0 ); /* ie6-9 */  
  83.   
  84. }   
  85.   
  86. .button01:active .bottombottom {   
  87.   margin: -20px 0 0 10px;   
  88. }   
  89.   
  90. .button01:active .top {   
  91.   margin: -70px 0 0 10px;   
  92. }