linear-gradient(线性渐变)

弓泰
2023-12-01

介绍


a)通过渐变可以设置一些复杂的颜色,可以实现从一个颜色向其他颜色过度的效果

b)渐变是图片!需要通过background-image来设置



linear-gradient(线性渐变)


linear-gradient()

注:

1、linear-gradient(red,yellow)红色在开头,黄色在结尾,中间是过渡区域

2、线性渐变的开头,我们可以指定一个渐变的方向

示例:

background-image:linear-gradient(to right,red,yellow);
可选值:

		to	left

		to	right

		to	bottom

		to	top

		to	top	left

		xdeg		`deg表示度数`	//	x为变量
			
		xturn		`turn表示圈`	//	x为变量

3、渐变可以同时指定多个颜色,多个颜色默认情况下平均分布

4、也可以手动指定渐变的分布情况

background-image:linear-gradient(red 50px,yellow 100px);

			`像素表示开始渐变的位置`

5、repeating-linear-gradient( )可以平铺的线性渐变

示例:
		
	background-image:repeating-linear-gradient
	(red 50px,yellow 100px);
 类似资料: