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

溫馨提示×

溫馨提示×

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

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

怎么用css3實現顏色漸變按鈕

發布時間:2021-08-10 20:45:07 來源:億速云 閱讀:112 作者:chen 欄目:web開發

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

  之前為大家分享很多純css3實現的實用按鈕,今天給大家帶來一款純css3實現的顏色漸變按鈕。這款按鈕的邊框和文字的顏色通過css3實現兩種顏色的漸變,效果非常好看,一起看下效果圖:

怎么用css3實現顏色漸變按鈕

  實現的代碼。

  html代碼:

XML/HTML Code復制內容到剪貼板

  1. <div class="container">  

  2.        <a target="_blank" class="btn green" href="http://www.neiyidaogou.com/"><span>Nominate Yourself</span></a>  

  3.        <a target="_blank" class="btn orange" href="http://www.neiyidaogou.com/"><span>Nominate Someone</span></a>  

  4.        <a target="_blank" class="btn blue" href="http://www.neiyidaogou.com/"><span>Buy Tickets Now</span></a>  

  5.    </div>  

  css3代碼:

CSS Code復制內容到剪貼板

  1. .btn   

  2.         {   

  3.             displayinline-block;   

  4.             margin: 1em 0;   

  5.             padding: 1em 2em;   

  6.             backgroundtransparent;   

  7.             border2px;   

  8.             border-radius: 3px;   

  9.             font-weight: 400;   

  10.             text-aligncenter;   

  11.         }   

  12.         .btn.green  

  13.         {   

  14.             box-shadow: 0 1px 0 1px rgba(43, 220, 146, 0.25), 0 -1px 0 1px rgba(129, 214, 106, 0.25), 1px 0 0 1px rgba(43, 220, 146, 0.25), -1px 0 0 1px rgba(129, 214, 106, 0.25), 1px -1px 0 1px rgba(86, 217, 126, 0.5), -1px 1px 0 1px rgba(86, 217, 126, 0.5), 1px 1px 0 1px rgba(0, 223, 166, 0.75), -1px -1px 0 1px rgba(173, 211, 86, 0.75);   

  15.         }   

  16.         .btn.green span   

  17.         {   

  18.             background: -webkit-linear-gradient(left#add356#00dfa6);   

  19.             -webkit-background-clip: text;   

  20.             -webkit-text-fill-colortransparent;   

  21.         }   

  22.         .btn.orange   

  23.         {   

  24.             box-shadow: 0 1px 0 1px rgba(255, 102, 43, 0.25), 0 -1px 0 1px rgba(255, 169, 69, 0.25), 1px 0 0 1px rgba(255, 102, 43, 0.25), -1px 0 0 1px rgba(255, 169, 69, 0.25), 1px -1px 0 1px rgba(255, 136, 56, 0.5), -1px 1px 0 1px rgba(255, 136, 56, 0.5), 1px 1px 0 1px rgba(255, 69, 31, 0.75), -1px -1px 0 1px rgba(255, 203, 82, 0.75);   

  25.         }   

  26.         .btn.orange span   

  27.         {   

  28.             background: -webkit-linear-gradient(left#ffcb52#ff451f);   

  29.             -webkit-background-clip: text;   

  30.             -webkit-text-fill-colortransparent;   

  31.         }   

  32.         .btn.blue  

  33.         {   

  34.             -webkit-border-image: -webkit-linear-gradient(left#3dade9#bf2fcb) round;   

  35.             border-image-slice: 1;   

  36.         }   

  37.         .btn.blue span   

  38.         {   

  39.             background: -webkit-linear-gradient(left#3dade9#bf2fcb);   

  40.             -webkit-background-clip: text;   

  41.             -webkit-text-fill-colortransparent;   

  42.         }   

  43.         .btn:nth-of-type(1)   

  44.         {   

  45.             floatleft;   

  46.         }   

  47.         .btn:nth-of-type(2)   

  48.         {   

  49.             floatrightright;   

  50.         }   

  51.         .btn:nth-of-type(3)   

  52.         {   

  53.             width: 100%;   

  54.             clearleft;   

  55.             padding: .75em;   

  56.             font-size: 3em;   

  57.             font-weight: 100;   

  58.             line-height: 1;   

  59.             letter-spacing1px;   

  60.         }   

  61.            

  62.         *   

  63.         {   

  64.             -moz-box-sizing: border-box;   

  65.             box-sizing: border-box;   

  66.         }   

  67.            

  68.         body   

  69.         {   

  70.             fontnormal 1em 'Helvetica Neue' , Helveticasans-serif;   

  71.             background#1d2025;   

  72.             -webkit-font-smoothing: antialiased;   

  73.             text-rendering: optimizeLegibility;   

  74.         }   

  75.            

  76.         .container   

  77.         {   

  78.             width: 60%;   

  79.             marginauto;   

  80.             positionabsolute;   

  81.             top: 50%;   

  82.             left: 50%;   

  83.             -webkit-transform: translate(-50%, -50%);   

  84.             -ms-transform: translate(-50%, -50%);   

  85.             transform: translate(-50%, -50%);   

  86.         }   

  87.         .container:after   

  88.         {   

  89.             display: table;   

  90.             content'';   

  91.             clearboth;   

  92.         }   

  93.            

  94.         a   

  95.         {   

  96.             color: inherit;   

  97.             text-decorationnone;   

  98.         }   

  99.            

  100.         h2.method1   

  101.         {   

  102.             background: -webkit-linear-gradient(left#ef0#f00);   

  103.             -webkit-background-clip: text;   

  104.             -webkit-text-fill-colortransparent;   

  105.         }  

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

向AI問一下細節

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

AI

临朐县| 黑山县| 闵行区| 措勤县| 慈利县| 当涂县| 石河子市| 特克斯县| 金湖县| 湘西| 郯城县| 仲巴县| 拜泉县| 伊川县| 崇信县| 五常市| 铜山县| 临沂市| 栾川县| 吉首市| 涟源市| 鹤峰县| 吉水县| 虹口区| 陈巴尔虎旗| 伊春市| 刚察县| 万盛区| 嵊泗县| 容城县| 四川省| 东源县| 定州市| 儋州市| 平乡县| 红安县| 五原县| 冷水江市| 台安县| 和平县| 金平|