【css】渐变

渐变是设置一种颜色或者多种颜色之间的过度变化。

两种渐变类型:

  • 线性渐变(向下/向上/向左/向右/对角线)

  • 径向渐变(由其中心定义)

1、线性渐变

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

其中direction是方向,值可以有bottom、right、top、left 。如果该参数参数值前面添加了to,则是渐变沿着相应的方向移动。如果省略了to,则为两个参数组合的方向,比如bottom right:右下角方向。

其中从上到下是默认的方向,可以不用添加direction参数。
1.1 默认方向

代码:

xml 复制代码
<head>
<style>
#grad1 {
  height: 200px;
  background-color: blue; /* 针对不支持渐变的浏览器 */
  background-image: linear-gradient(blue, yellow);
}
</style>
</head>
<body>

<div id="grad1"></div>

</body>

渲染效果:

1.2、从左到右

代码:

xml 复制代码
<head>
<style>
#grad1 {
  height: 200px;
  background-color: blue; /* 针对不支持渐变的浏览器 */
  background-image: linear-gradient(to right,blue, yellow);
}
</style>
</head>
<body>

<div id="grad1"></div>

</body>

渲染效果:

1.3 右下角

代码:

xml 复制代码
<style>
#grad1 {
  height: 200px;
  background-color: blue; /* 针对不支持渐变的浏览器 */
  background-image: linear-gradient(to bottom right,blue, yellow);
}
</style>
</head>
<body>

<div id="grad1"></div>

</body>

渲染效果:

2、径向渐变

径是指圆形的直径的径,以圆心为出发点,沿着径向渐变,和箭靶的效果差不多。

语法:

xml 复制代码
/* 在容器中心的渐变,从红色开始,变成蓝色,最后变成绿色 */
radial-gradient(circle at center, red 0, blue, green 100%)

边缘形状可以是圆形(circle)或椭圆形(ellipse)

形式语法

xml 复制代码
<radial-gradient()> = 
  radial-gradient( [ <ending-shape> || <size> ]? [ at <position> ]? , <color-stop-list> )  

<size> = 
  <extent-keyword>              |
  <length [0,∞]>                |
  <length-percentage [0,∞]>{2}  

<position> = 
  [ left | center | right ] || [ top | center | bottom ]  |
  [ left | center | right | <length-percentage> ] [ top | center | bottom | <length-percentage> ]?  |
  [ [ left | right ] <length-percentage> ] && [ [ top | bottom ] <length-percentage> ]  

<color-stop-list> = 
  <linear-color-stop> , [ <linear-color-hint>? , <linear-color-stop> ]#  

<extent-keyword> = 
  closest-corner   |
  closest-side     |
  farthest-corner  |
  farthest-side    

<length-percentage> = 
  <length>      |
  <percentage>  

<linear-color-stop> = 
  <color>               &&
  <length-percentage>?  

<linear-color-hint> = 
  <length-percentage>  

代码:

xml 复制代码
<style>
#grad1 {
  height: 200px;
  width:200px;
  background-color: blue; /* 针对不支持渐变的浏览器 */
  background-image: radial-gradient(circle at center,#33691e, yellow);
}
</style>
</head>
<body>

<div id="grad1"></div>

</body>

渲染效果:

关于径向渐变的详细介绍可以参考MDN Web Docs社区

相关推荐
也无晴也无风雨28 分钟前
深入剖析输入URL按下回车,浏览器做了什么
前端·后端·计算机网络
Martin -Tang1 小时前
Vue 3 中,ref 和 reactive的区别
前端·javascript·vue.js
FakeOccupational3 小时前
nodejs 020: React语法规则 props和state
前端·javascript·react.js
放逐者-保持本心,方可放逐3 小时前
react 组件应用
开发语言·前端·javascript·react.js·前端框架
曹天骄4 小时前
next中服务端组件共享接口数据
前端·javascript·react.js
阮少年、4 小时前
java后台生成模拟聊天截图并返回给前端
java·开发语言·前端
郝晨妤5 小时前
鸿蒙ArkTS和TS有什么区别?
前端·javascript·typescript·鸿蒙
AvatarGiser6 小时前
《ElementPlus 与 ElementUI 差异集合》Icon 图标 More 差异说明
前端·vue.js·elementui
喝旺仔la6 小时前
vue的样式知识点
前端·javascript·vue.js
别忘了微笑_cuicui6 小时前
elementUI中2个日期组件实现开始时间、结束时间(禁用日期面板、控制开始时间不能超过结束时间的时分秒)实现方案
前端·javascript·elementui