CSS3 漸層背景色各種方向 相容IE9+

來源:互聯網
上載者:User

標籤:還需要   wrap   code   從右至左   white   class   size   16px   漸層   

背景色,除了純色以外,還能夠使用多種顏色組合成為漸層背景色,使頁面豐富。

漸層背景分為兩種:

1、線性漸層;

2、環形漸層;

 

線性漸層

線性漸層分為:橫向、縱向、對角漸層三種漸層

文法

<linear-gradient> = linear-gradient([ [ <angle>| to <aside-or-corner> ] ,]? <color-stop>[, <color-stop>]+)

<side-or-corner> = [left | right] || [top | bottom]

<color-stop> = <color> [ <length> | <percentage>  ]?

<angle>:用角度值指定漸層的方向。

to left:設定漸層為從右至左;

to right:設定漸層為從左至右;

to top:設定漸層為從下到上;

to bottom:設定漸層為從上到下;

<color-stop>:設定指定漸層的起止顏色

<color>:指定顏色

<length>:用長度值指定起止色位置。不允許負值

<percentage>:用百分比指定起止色位置。

 

background:linear-gradient(參數1,參數2,參數3,參數4....參數N)

參數1:可填可不填,填寫的話寫方向 如:to right,就是漸層方向由左到右,不填寫預設從上到下漸層。

參數1‘:與參數1基本一致,寫在-webkit-,-moz-,-o-首碼情況下,如:left 代表漸層方向開始的位置

參數2:漸層開始顏色,可填rgba()或者#fff或者white,後面加百分比代表顏色佔比多少,如 #fff 50% 代表白色佔比50%。

參數3:若後面無參數 則為漸層終止顏色,與參數2屬性可選一致。

參數4....參數N:可增加的漸層顏色節點。最後一個為漸層終止顏色

 

樣本

linear-gradient(#fff, #75aaa3);

linear-gradient(to bottom, #fff,#75aaa3);

linear-gradient(to top, #75aaa3, #fff);

linear-gradient(180deg, #fff, #75aaa3);

linear-gradient(to bottom, #fff 0%, #75aaa3 100%);

但是,還需要相容瀏覽器:

//從下至上

#text.btt{background: -webkit-linear-gradient(bottom,#fff, #75aaa2);background: -o-linear-gradient(bottom,#fff, #75aaa2);background: -moz-linear-gradient(bottom,#fff, #75aaa2);background: linear-gradient(to top,#fff, #75aaa2); /* 標準的文法(必須放在最後) */} 

//帶透明度

#text.opac{background: -webkit-linear-gradient(rgba(256,256,256,0), #75aaa2);background: -o-linear-gradient(rgba(256,256,256,0), #75aaa2);background: -moz-linear-gradient(rgba(256,256,256,0), #75aaa2);background: linear-gradient(rgba(256,256,256,0), #75aaa2); /* 標準的文法(必須放在最後) */}

 

CSS3 漸層背景色各種方向 相容IE9+

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.