gradient

CSS3 Gradient分为linear-gradient(线性渐变)和radial-gradient(径向渐变)

电脑内核{
几种现代浏览器的内核,
Mozilla(Gecko)(熟悉的有Firefox,Flock等浏览器)、
WebKit(熟悉的有Safari、Chrome等浏览器)、
Opera(presto)(Opera浏览器)、Trident(讨厌的IE浏览器)
}

linear-gradient 语法
background: linear-gradient(direction, color-stop1, color-stop2, …);

background: linear-gradient(to right, rgba(255,0,0,0), rgba(255,0,0,1));
background: repeating-linear-gradient(red, yellow 10%, green 20%);
background: linear-gradient(180deg, red, blue); /* 标准的语法 */

radial-gradient 语法
background: radial-gradient(center, shape size, start-color, …, last-color);

background: radial-gradient(red 5%, green 15%, blue 60%); /* 标准的语法 */
background: radial-gradient(circle, red, yellow, green); /* 标准的语法 */
shape 参数定义了形状。它可以是值 circle 或 ellipse。

size 参数定义了渐变的大小。它可以是以下四个值:
closest-side
farthest-side
closest-corner
farthest-corner

background: radial-gradient(60% 55%, closest-side,blue,green,yellow,black);

你可能感兴趣的:(css3)