div{ width: 200px; height: 200px; background-image:repeating-linear-gradient(to right, red 10%, green 20%); }
漸變分爲線性漸變和徑向漸變兩種;其中:線性漸變指的是從上/下/左/右/對角方向開始的漸變,徑向漸變指的是從模塊的中心到周邊開始的漸變
。ide
線性漸變:spa
div{ width: 200px; height: 200px; background-image:linear-gradient(#e66465, #9198e5); }
div{ width: 200px; height: 200px; background-image:linear-gradient(to right, red, yellow); }
div{ width: 200px; height: 200px; background-image:linear-gradient(to right bottom, red, green); }
div{ width: 200px; height: 200px; background-image:linear-gradient(-90deg, red,yellow); }
div{ width: 600px; height: 100px; background-image: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet); }
div{ width: 200px; height: 200px; background-image: linear-gradient(to right, rgba(255,0,0,0), rgba(255,0,0,1)); }
div{ width: 200px; height: 200px; background-image:repeating-linear-gradient(to right, red 10%, green 20%); }
徑向漸變:3d
div{ width: 200px; height: 100px; background-image:radial-gradient(red, yellow,green); }
div{ width: 200px; height: 100px; background-image: radial-gradient(red 5%, yellow 15%, green 60%); }
div{ display: inline-block; width: 200px; height: 100px; background-image: radial-gradient(circle,red,yellow,green); }
div{ display: inline-block; width: 200px; height: 100px; background-image: radial-gradient(ellipse,red,yellow,green); }
div{ width: 200px; height: 200px; background-image:repeating-radial-gradient(red, yellow 10%, green 15%); }
.one{ width: 100px; height: 100px; background-image:radial-gradient(closest-side at 60% 55%, red, yellow, black); }
.two{ width: 100px; height: 100px; background-image:radial-gradient(farthest-side at 60% 55%, red, yellow, black); }
.three{ width: 100px; height: 100px; background-image:radial-gradient(closest-corner at 60% 55%, red, yellow, black); }
.four{ width: 100px; height: 100px; background-image:radial-gradient(farthest-corner at 60% 55%, red, yellow, black); }
注:本文僅供理解,重點在於熟練使用code