魔幻般冒泡背景的CSS3按钮动画

雾,没有山河那么壮观,没有雨那么缠绵。它总是那么轻盈,那么淡雅,给人一种美的享受。陽光被层层叠叠的树叶过滤,漏到他身上变成了淡淡的圆圆的轻轻摇曳的光晕。

这是一款非常有特点的CSS3按钮,按钮的背景不是北京图片,也不是单纯的颜色,而是一组魔幻般的冒泡背景动画。当我们将鼠标滑过按钮时,按钮的冒泡背景动画就可以展示出来。可以说这款CSS3按钮的设计风格相当有创意,而且令人惊叹的是,这些动画都是用CSS3实现的,并没有使用JavaScript,非常强大。

HTML代码:

XML/HTML Code复制内容到剪贴板
  1. <divid="buttonContainer">
  2. <arel="nofollow noopener noreferrer" href="#"class="buttonbigblue">BigButton</a>
  3. <arel="nofollow noopener noreferrer" href="#"class="buttonbiggreen">BigButton</a>
  4. <arel="nofollow noopener noreferrer" href="#"class="buttonbigorange">BigButton</a>
  5. <arel="nofollow noopener noreferrer" href="#"class="buttonbiggray">BigButton</a>
  6. <arel="nofollow noopener noreferrer" href="#"class="buttonbluemedium">MediumButton</a>
  7. <arel="nofollow noopener noreferrer" href="#"class="buttongreenmedium">MediumButton</a>
  8. <arel="nofollow noopener noreferrer" href="#"class="buttonorangemedium">MediumButton</a>
  9. <arel="nofollow noopener noreferrer" href="#"class="buttongraymedium">MediumButton</a>
  10. <arel="nofollow noopener noreferrer" href="#"class="buttonsmallblue">SmallButton</a>
  11. <arel="nofollow noopener noreferrer" href="#"class="buttonsmallgreen">SmallButton</a>
  12. <arel="nofollow noopener noreferrer" href="#"class="buttonsmallbluerounded">Rounded</a>
  13. <arel="nofollow noopener noreferrer" href="#"class="buttonsmallorange">SmallButton</a>
  14. <arel="nofollow noopener noreferrer" href="#"class="buttonsmallgray">SmallButton</a>
  15. <arel="nofollow noopener noreferrer" href="#"class="buttonsmallgreenrounded">Rounded</a>
  16. </div>

CSS代码:

CSS Code复制内容到剪贴板
  1. .button{
  2. font:15pxCalibri,Arial,sans-serif;
  3. /*Asemi-transparenttextshadow*/
  4. text-shadow:1px1px0rgba(255,255,255,0.4);
  5. /*Overridingthedefaultunderlinestylingofthelinks*/
  6. text-decoration:none!important;
  7. whitewhite-space:nowrap;
  8. display:inline-block;
  9. vertical-align:baselinebaseline;
  10. position:relative;
  11. cursor:pointer;
  12. padding:10px20px;
  13. background-repeat:no-repeat;
  14. /*Thefollowingtworulesarefallbacks,incase
  15. thebrowserdoesnotsupportmultiplebackgrounds.*/
  16. background-position:bottombottomleft;
  17. background-image:url('button_bg.png');
  18. /*Multiplebackgroundsversion.Thebackgroundimages
  19. aredefinedindividuallyincolorclasses*/
  20. background-position:bottombottomleft,toprightright,00,00;
  21. background-clip:border-box;
  22. /*Applyingadefaultborderraidusof8px*/
  23. -moz-border-radius:8px;
  24. -webkit-border-radius:8px;
  25. border-radius:8px;
  26. /*A1pxhighlightinsideofthebutton*/
  27. -moz-box-shadow:001px#fffinset;
  28. -webkit-box-shadow:001px#fffinset;
  29. box-shadow:001px#fffinset;
  30. /*AnimatingthebackgroundpositionswithCSS3*/
  31. /*CurrentlyworksonlyinSafari/Chrome*/
  32. -webkit-transition:background-position1s;
  33. -moz-transition:background-position1s;
  34. transition:background-position1s;
  35. }
  36. .button:hover{
  37. /*Thefirstruleisafallback,incasethebrowser
  38. doesnotsupportmultiplebackgrounds
  39. */
  40. background-position:topleft;
  41. background-position:topleft,bottombottomrightright,00,00;
  42. }
  43. .button:active{
  44. /*Movingthebutton1pxtothebottomwhenclicked*/
  45. bottombottom:-1px;
  46. }
  47. /*Thethreebuttonssizes*/
  48. .button.big{font-size:30px;}
  49. .button.medium{font-size:18px;}
  50. .button.small{font-size:13px;}
  51. /*Amoreroundedbutton*/
  52. .button.rounded{
  53. -moz-border-radius:4em;
  54. -webkit-border-radius:4em;
  55. border-radius:4em;
  56. }
  57. /*Definingfourbuttoncolors*/
  58. /*BlueButton*/
  59. .blue.button{
  60. color:#0f4b6d!important;
  61. border:1pxsolid#84acc3!important;
  62. /*Afallbackbackgroundcolor*/
  63. background-color:#48b5f2;
  64. /*Specifyingaversionwithgradientsaccordingto*/
  65. background-image:url('button_bg.png'),url('button_bg.png'),
  66. -moz-radial-gradient(centerbottombottom,circle,
  67. rgba(89,208,244,1)0,rgba(89,208,244,0)100px),
  68. -moz-linear-gradient(#4fbbf7,#3faeeb);
  69. background-image:url('button_bg.png'),url('button_bg.png'),
  70. -webkit-gradient(radial,50%100%,0,50%100%,100,
  71. from(rgba(89,208,244,1)),to(rgba(89,208,244,0))),
  72. -webkit-gradient(linear,0%0%,0%100%,from(#4fbbf7),to(#3faeeb));
  73. }
  74. .blue.button:hover{
  75. background-color:#63c7fe;
  76. background-image:url('button_bg.png'),url('button_bg.png'),
  77. -moz-radial-gradient(centerbottombottom,circle,
  78. rgba(109,217,250,1)0,rgba(109,217,250,0)100px),
  79. -moz-linear-gradient(#63c7fe,#58bef7);
  80. background-image:url('button_bg.png'),url('button_bg.png'),
  81. -webkit-gradient(radial,50%100%,0,50%100%,100,
  82. from(rgba(109,217,250,1)),to(rgba(109,217,250,0))),
  83. -webkit-gradient(linear,0%0%,0%100%,from(#63c7fe),to(#58bef7));
  84. }
  85. /*GreenButton*/
  86. .green.button{
  87. color:#345903!important;
  88. border:1pxsolid#96a37b!important;
  89. background-color:#79be1e;
  90. background-image:url('button_bg.png'),url('button_bg.png'),-moz-radial-gradient(centerbottombottom,circle,rgba(162,211,30,1)0,rgba(162,211,30,0)100px),-moz-linear-gradient(#82cc27,#74b317);
  91. background-image:url('button_bg.png'),url('button_bg.png'),-webkit-gradient(radial,50%100%,0,50%100%,100,from(rgba(162,211,30,1)),to(rgba(162,211,30,0))),-webkit-gradient(linear,0%0%,0%100%,from(#82cc27),to(#74b317));
  92. }
  93. .green.button:hover{
  94. background-color:#89d228;
  95. background-image:url('button_bg.png'),url('button_bg.png'),-moz-radial-gradient(centerbottombottom,circle,rgba(183,229,45,1)0,rgba(183,229,45,0)100px),-moz-linear-gradient(#90de31,#7fc01e);
  96. background-image:url('button_bg.png'),url('button_bg.png'),-webkit-gradient(radial,50%100%,0,50%100%,100,from(rgba(183,229,45,1)),to(rgba(183,229,45,0))),-webkit-gradient(linear,0%0%,0%100%,from(#90de31),to(#7fc01e));
  97. }
  98. /*OrangeButton*/
  99. .orange.button{
  100. color:#693e0a!important;
  101. border:1pxsolid#bea280!important;
  102. background-color:#e38d27;
  103. background-image:url('button_bg.png'),url('button_bg.png'),-moz-radial-gradient(centerbottombottom,circle,rgba(232,189,45,1)0,rgba(232,189,45,0)100px),-moz-linear-gradient(#f1982f,#d4821f);
  104. background-image:url('button_bg.png'),url('button_bg.png'),-webkit-gradient(radial,50%100%,0,50%100%,100,from(rgba(232,189,45,1)),to(rgba(232,189,45,0))),-webkit-gradient(linear,0%0%,0%100%,from(#f1982f),to(#d4821f));
  105. }
  106. .orange.button:hover{
  107. background-color:#ec9732;
  108. background-image:url('button_bg.png'),url('button_bg.png'),-moz-radial-gradient(centerbottombottom,circle,rgba(241,192,52,1)0,rgba(241,192,52,0)100px),-moz-linear-gradient(#f9a746,#e18f2b);
  109. background-image:url('button_bg.png'),url('button_bg.png'),-webkit-gradient(radial,50%100%,0,50%100%,100,from(rgba(241,192,52,1)),to(rgba(241,192,52,0))),-webkit-gradient(linear,0%0%,0%100%,from(#f9a746),to(#e18f2b));
  110. }
  111. .gray.button{
  112. color:#525252!important;
  113. border:1pxsolid#a5a5a5!important;
  114. background-color:#a9adb1;
  115. background-image:url('button_bg.png'),url('button_bg.png'),-moz-radial-gradient(centerbottombottom,circle,rgba(197,199,202,1)0,rgba(197,199,202,0)100px),-moz-linear-gradient(#c5c7ca,#92989c);
  116. background-image:url('button_bg.png'),url('button_bg.png'),-webkit-gradient(radial,50%100%,0,50%100%,100,from(rgba(197,199,202,1)),to(rgba(197,199,202,0))),-webkit-gradient(linear,0%0%,0%100%,from(#c5c7ca),to(#92989c));
  117. }
  118. .gray.button:hover{
  119. background-color:#b6bbc0;
  120. background-image:url('button_bg.png'),url('button_bg.png'),-moz-radial-gradient(centerbottombottom,circle,rgba(202,205,208,1)0,rgba(202,205,208,0)100px),-moz-linear-gradient(#d1d3d6,#9fa5a9);
  121. background-image:url('button_bg.png'),url('button_bg.png'),-webkit-gradient(radial,50%100%,0,50%100%,100,from(rgba(202,205,208,1)),to(rgba(202,205,208,0))),-webkit-gradient(linear,0%0%,0%100%,from(#d1d3d6),to(#9fa5a9));
  122. }

以上就是本文的全部内容,希望对大家的学习有所帮助。