SVG <polyline>
SVG 折线 - <polyline>
例子 1
<polyline>
元素用于创建仅由直线组成的任何形状(在多个点连接):
这是 SVG 代码:
<svg height="200" width="500"> <polyline points="20,20 40,25 60,40 80,120 120,140 200,180" style="fill:none;stroke:black;stroke-width:3" /> </svg>
代码解释:
- points 属性定义绘制折线所需的点列表(x 和 y 坐标对)
例子 2
另一个只有直线的例子:
这是 SVG 代码:
<svg height="180" width="500"> <polyline points="0,40 40,40 40,80 80,80 80,120 120,120 120,160" style="fill:white;stroke:red;stroke-width:4" /> </svg>