1. 颜色(Color):
<rect x="10" y="10" width="100" height="50" stroke="red" />
2. 宽度(Width):
<line x1="10" y1="10" x2="90" y2="90" stroke="blue" stroke-width="2" />
3. 线型(Line Type):
<circle cx="50" cy="50" r="40" stroke="green" stroke-width="3" stroke-dasharray="5 2" />
4. 线帽和连接(Line Cap and Join):
<path d="M10 80 Q 95 10 180 80" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
5. 渐变描边(Gradient Stroke):
<rect x="10" y="10" width="100" height="50" stroke="url(#gradient)" />
这些是一些常见的 stroke 属性用法,你可以根据需要组合使用这些属性,以实现不同的描边效果。SVG的 stroke 属性提供了丰富的选项,使得可以对图形的边框进行详细的控制。
转载请注明出处:http://www.pingtaimeng.com/article/detail/14676/SVG