📅  最后修改于: 2023-12-03 15:20:24.352000             🧑  作者: Mango
SVG
<stop offset="[number or %]" stop-color="[color]" stop-opacity="[opacity]"/>
创建从绿色到黄色的渐变:
<linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:rgb(34,139,34);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(255,215,0);stop-opacity:1" />
</linearGradient>
<rect x="0" y="0" width="500" height="200" fill="url(#grad)" />
渐变的起始点为 (0%,0%),结束点为 (100%,0%),中间包含两个停止点,第一个停止点的颜色为绿色 (#228B22),不透明度为 1;第二个停止点的颜色为黄色 (#FFD700),不透明度为 1。