css渐变 linear-gradient、repeating-linear-gradient
作者:互联网
css渐变 linear-gradient、repeating-linear-gradient
定义
CSS linear-gradient() 函数用于创建一个表示两种或多种颜色线性渐变的图片。
linear-gradient() 本质:是图片,函数创建的是过渡颜色的图片,
linear-gradient(angle | to <side-or-corner> ,<color> [ <color-stop-length> ]?)
-
angle | to <side-or-corner>
|
管道符:表示排他。angle
或者to <side-or-corner>
都支持,但只能同时是其中一个,要么是角度angle,要么是to <side-or-corner>
。angle
用角度值指定渐变的方向(或角度),0deg
竖直向上,角度增加,方向顺时针改变
background:linear-gradient(90deg,red,yellow); /* 水平向右的方向 从红色平滑过渡到黄色 */
to <side-or-corner>
:to left
、to right
、to top
、to bottom
、to left top
、to left bottom
、to right top
、to right tottom
- 不写默认
180deg
从上到下的方向
<color> [ <color-stop-length> ]?
[ <color-stop-length> ]?
可选值<color-stop-length> = [ <percentage> | <length> ]{1,2}
:percentage
与length
| 单管道符,说明只能选一种类型{1,2}
可以有1个percentage
或者2percentage
(length
同理)
background: linear-gradient(to right,red 20% ,green 80%);
/*
1. 方向向右
2. 0~20%: red 纯色填充
3. 80%~100%: green 纯色填充
4. 20%~80%: red 到 green 渐变填充
*/
background
多个linear-gradient
层级问题:先添加的 linear-gradient 的层级最高
.box{
background:linear-gradient(0deg,rgba(255,0,0,1),rgba(255,0,0,0) 50%);
}
.box{
background:linear-gradient(180deg,rgba(0,0,255,1),rgba(0,0,255,1) 100%);
}
.box{
background:linear-gradient(0deg,rgba(255,0,0,1),rgba(255,0,0,0) 50%),
linear-gradient(180deg,rgba(0,0,255,1),rgba(0,0,255,1) 100%);
}
=> 可以看出第一个渐变层级最高
repeating-linear-gradient
repeating-linear-gradient() 创建一个由重复线性渐变组成的, 这是一个类似 linear-gradient 的函数,并且采用相同的参数,但是它会在所有方向上重复渐变以覆盖其整个容器.
/* 设置 green 10% ,渐变从 0%-10% 开始渐变,没有填满整个背景,开始重复 */
background-image: repeating-linear-gradient(90deg, blue, green 10%);
background-image: repeating-linear-gradient(90deg, blue, green 10%);
background-size: 100% 20%;
background-repeat: no-repeat;
标签:linear,gradient,渐变,background,255,css,rgba 来源: https://www.cnblogs.com/shine-lovely/p/16551506.html