91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

CSS3實現動畫按鈕代碼分享

發布時間:2021-08-10 21:11:12 來源:億速云 閱讀:107 作者:chen 欄目:web開發

本篇內容介紹了“CSS3實現動畫按鈕代碼分享”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

  今天來分享很不錯的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. }  

“CSS3實現動畫按鈕代碼分享”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

临澧县| 巴彦县| 内乡县| 工布江达县| 巴彦淖尔市| 通州市| 伊金霍洛旗| 芒康县| 寿宁县| 甘肃省| 荥经县| 阿尔山市| 大余县| 南郑县| 土默特右旗| 瑞丽市| 贵南县| 海门市| 缙云县| 湄潭县| 青川县| 建始县| 安远县| 衢州市| 聂拉木县| 荔波县| 龙南县| 西华县| 莒南县| 肥东县| 通道| 庆城县| 平阳县| 长乐市| 托里县| 九江市| 南投县| 江陵县| 河南省| 日喀则市| 天台县|