渐变是从一种颜色到另一种颜色的平滑过渡。此外,可以将多种颜色过渡应用于同一元素。
SVG 中有两种主要的渐变类型:
<linearGradient> 元素用于定义线性渐变。
<linearGradient> 元素必须嵌套在 <defs> 标记内。 <defs> 标签是定义的缩写,包含特殊元素(例如渐变)的定义。
线性渐变可以定义为水平、垂直或角度渐变:
定义一个具有从黄色到红色的水平线性渐变的椭圆:
这是 SVG 代码:
<svg height="150" width="400">
<defs>
<linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:rgb(255,255,0);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(255,0,0);stop-opacity:1" />
</linearGradient>
</defs>
<ellipse cx="200" cy="70" rx="85" ry="55" fill="url(#grad1)" />
</svg>
亲自试一试 »
代码解释:
定义一个具有从黄色到红色的垂直线性渐变的椭圆:
这是 SVG 代码:
<svg height="150" width="400">
<defs>
<linearGradient id="grad2" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:rgb(255,0,0);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(255,255,0);stop-opacity:1" />
</linearGradient>
</defs>
<ellipse cx="200" cy="70" rx="85" ry="55" fill="url(#grad2)" />
</svg>
亲自试一试 »
定义一个具有从黄色到红色的水平线性渐变的椭圆,并在椭圆内添加文本:
这是 SVG 代码:
<svg height="150" width="400">
<defs>
<linearGradient id="grad3" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:rgb(255,255,0);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(255,0,0);stop-opacity:1" />
</linearGradient>
</defs>
<ellipse cx="200" cy="70" rx="85" ry="55" fill="url(#grad3)" />
<text fill="#ffffff" font-size="45" font-family="Verdana" x="150" y="86">
SVG</text>
</svg>
亲自试一试 »
代码解释:
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!