CSS:linear-gradient()背景顏色漸變--練習筆記


css語法

background: linear-gradient(direction,color-stop1,color-stop2,...);

direction:用角度值指定漸變的方向(或角度);

color-stop1,color-stop2,...:用於指定漸變的起止顏色

ps:至少需要兩種顏色

1   background: -webkit-linear-gradient(red,yellow,blue); /* Safari 5.1-6.0 */
2   background: -o-linear-gradient(red,yellow,blue); /* Opera 11.1-12.0 */ 
3   background: -moz-linear-gradient(red,yellow,blue); /* Firefox 3.6-15 */
4   background: linear-gradient(red,yellow,blue); /* 標准語法 */

兼容性

練習

1、background: linear-gradient(to left,#d3959b,#bfe6ba);

to left 設置漸變從右到左,相當於270deg

 

2、background: linear-gradient(to right,#d3959b,#bfe6ba);

to right設置漸變從左到右,相當於90deg

3、background: linear-gradient(to top,#d3959b,#bfe6ba);

to top 設置漸變從下到上,相當於0deg

4、background: linear-gradient(to bottom,#d3959b,#bfe6ba);

5、background: linear-gradient(to top right,#d3959b,#bfe6ba);

to right top = to top right :從左下角到右上角,對角線角度

6、background: linear-gradient(45deg,#d3959b,#bfe6ba);

和to top right 有細微差別(背景為正方形的時候無差別)

7、background: linear-gradient(45deg,#d3959b 20%,#bfe6ba);

用百分比指定起始顏色的位置,默認值為0%;

8、background: linear-gradient(to right,#feac5e,#c779d0,#4bc0c8);

9、background: linear-gradient(45deg,#feac5e,#c779d0,#4bc0c8);

10、background: linear-gradient(45deg,rgba(254,172,94,0.5),rgba(199,121,208,0.5),rgba(75,192,200,0.5));

 

rgba使用了0.5的透明度


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM