标签:nts die ntc gradient web color css webkit 谷歌
一、CSS3定义两个类型的渐变。
1、线性渐变(Linear Gradients)-向下、向上、向左、向右、对角方向渐变。
2、径向渐变(Radial Gradients)-由中心向外渐变。
语法:
background-color:linear-gradient(方向, color1, color2, color3, color4, ........);
二、从左到右渐变
#GradientColor{
background: -webkit-linear-gradient(left top, red , blue); /** Safari and 谷歌 **/
background: -o-linear-gradient(left top, red , blue); /** Opera **/
background: -moz-linear-gradient(left top, red , blue); /** Firefox **/
background: -ms-linear-gradient(left top, red , blue); /** IE **/
}
三、从角度渐变( 由内向外渐变 )
#GradientColor{
background: -webkit-linear-gradient(45deg, red , blue); /** Safari and 谷歌 **/
background: -o-linear-gradient(45deg, red , blue); /** Opera **/
background: -moz-linear-gradient(45deg, red , blue); /** Firefox **/
background: -ms-linear-gradient(45deg, red , blue); /** IE **/
}
标签:nts die ntc gradient web color css webkit 谷歌
原文地址:https://www.cnblogs.com/yachjin/p/9053630.html