linear在HTML的作用,CSS3里的linear-gradient()函数

林德惠
2023-12-01

linear-gradient() 函数用于创建一个线性渐变的 "图像"。

为了创建一个线性渐变,你需要设置一个起始点和一个方向(指定为一个角度)的渐变效果。你还要定义终止色。终止色就是你想让Gecko去平滑的过渡,并且你必须指定至少两种,当然也会可以指定更多的颜色去创建更复杂的渐变效果。

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

direction用角度值指定渐变的方向(或角度)。

color-stop1, color-stop2,...用于指定渐变的起止颜色。

DEMO:html>

CSS3里的linear-gradient()函数

#grad1 {

height: 200px;

background-color: red; /* 不支持线性的时候显示 */

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

}

线性渐变 - 从左到右

从左边开始的线性渐变。起点是红色,慢慢过渡到黄色:

注意: Internet Explorer 8 及之前的版本不支持渐变。

预览看下吧。

 类似资料: