成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

怎么用css3實(shí)現(xiàn)顏色漸變按鈕

本篇內(nèi)容介紹了“怎么用css3實(shí)現(xiàn)顏色漸變按鈕”的有關(guān)知識(shí),在實(shí)際案例的操作過(guò)程中,不少人都會(huì)遇到這樣的困境,接下來(lái)就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來(lái)自于我們對(duì)這個(gè)行業(yè)的熱愛(ài)。我們立志把好的技術(shù)通過(guò)有效、簡(jiǎn)單的方式提供給客戶,將通過(guò)不懈努力成為客戶在信息化領(lǐng)域值得信任、有價(jià)值的長(zhǎng)期合作伙伴,公司提供的服務(wù)項(xiàng)目有:域名與空間、網(wǎng)絡(luò)空間、營(yíng)銷軟件、網(wǎng)站建設(shè)、東豐網(wǎng)站維護(hù)、網(wǎng)站推廣。

之前為大家分享很多純css3實(shí)現(xiàn)的實(shí)用按鈕,今天給大家?guī)?lái)一款純css3實(shí)現(xiàn)的顏色漸變按鈕。這款按鈕的邊框和文字的顏色通過(guò)css3實(shí)現(xiàn)兩種顏色的漸變,效果非常好看,一起看下效果圖:

怎么用css3實(shí)現(xiàn)顏色漸變按鈕

實(shí)現(xiàn)的代碼。

html代碼:

XML/HTML Code復(fù)制內(nèi)容到剪貼板

  1. <div class="container">  

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

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

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

  5.    </div>  

css3代碼:

CSS Code復(fù)制內(nèi)容到剪貼板

  1. .btn   

  2.         {   

  3.             display: inline-block;   

  4.             margin: 1em 0;   

  5.             padding: 1em 2em;   

  6.             background: transparent;   

  7.             border: 2px;   

  8.             border-radius: 3px;   

  9.             font-weight: 400;   

  10.             text-align: center;   

  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-color: transparent;   

  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-color: transparent;   

  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-color: transparent;   

  42.         }   

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

  44.         {   

  45.             float: left;   

  46.         }   

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

  48.         {   

  49.             float: rightright;   

  50.         }   

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

  52.         {   

  53.             width: 100%;   

  54.             clear: left;   

  55.             padding: .75em;   

  56.             font-size: 3em;   

  57.             font-weight: 100;   

  58.             line-height: 1;   

  59.             letter-spacing: 1px;   

  60.         }   

  61.            

  62.         *   

  63.         {   

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

  65.             box-sizing: border-box;   

  66.         }   

  67.            

  68.         body   

  69.         {   

  70.             font: normal 1em 'Helvetica Neue' , Helvetica, sans-serif;   

  71.             background: #1d2025;   

  72.             -webkit-font-smoothing: antialiased;   

  73.             text-rendering: optimizeLegibility;   

  74.         }   

  75.            

  76.         .container   

  77.         {   

  78.             width: 60%;   

  79.             margin: auto;   

  80.             position: absolute;   

  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.             clear: both;   

  92.         }   

  93.            

  94.         a   

  95.         {   

  96.             color: inherit;   

  97.             text-decoration: none;   

  98.         }   

  99.            

  100.         h2.method1   

  101.         {   

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

  103.             -webkit-background-clip: text;   

  104.             -webkit-text-fill-color: transparent;   

  105.         }  

“怎么用css3實(shí)現(xiàn)顏色漸變按鈕”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!

分享文章:怎么用css3實(shí)現(xiàn)顏色漸變按鈕
本文鏈接:http://jinyejixie.com/article36/ggeepg.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供App設(shè)計(jì)、網(wǎng)站內(nèi)鏈企業(yè)建站、關(guān)鍵詞優(yōu)化網(wǎng)站營(yíng)銷、虛擬主機(jī)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

營(yíng)銷型網(wǎng)站建設(shè)
温宿县| 逊克县| 海盐县| 石景山区| 平安县| 武冈市| 新津县| 哈巴河县| 道真| 双城市| 徐水县| 叶城县| 江安县| 德清县| 玉门市| 廉江市| 沅陵县| 二连浩特市| 长泰县| 同德县| 通城县| 同心县| 公主岭市| 岫岩| 利辛县| 六盘水市| 枣庄市| 连州市| 阿勒泰市| 宁津县| 桐梓县| 健康| 繁峙县| 东山县| 衢州市| 铜梁县| 得荣县| 揭阳市| 鄂州市| 金山区| 满城县|