SVG - 多段线
<polyline> 元素用于绘制连接的直线。
语法声明
以下是 <polyline> 元素的语法声明。我们只展示了主要属性。
<polyline
points="list of points" >
</polyline>
属性
名称 | 描述 |
---|---|
points | 构成多段线的点列表。 |
例
testSVG.htm
<html>
<title>SVG Polyline</title>
<body>
<svg width="600" height="400">
<g>
<text x="0" y="15" fill="black" >折线#1:无不透明性</text>
<polyline points="150,75 258,137.5 258,262.5 150,325 42,262.6 42,137.5"
stroke="black" stroke-width="3" fill="none"></polyline>
</g>
</svg>
</body>
</html>
输出
在 Chrome Web 浏览器中打开 textSVG.htm。您可以使用 Chrome/Firefox/Opera 直接查看 SVG 图像,无需任何插件。Internet Explorer 9 及更高版本还支持 SVG 图像渲染。
具有不透明度的多段线
<html>
<title>SVG Polyline</title>
<body>
<svg width="600" height="400">
<g>
<text x="0" y="15" fill="black" >折线#2:不透明度 </text>
<polyline points="150,75 258,137.5 258,262.5 150,325 42,262.6 42,137.5"
style="fill:none;stroke-width:3;
stroke:rgb(0,0,0);stroke-opacity:0.5;"></polyline>
</g>
</svg>
</body>
</html>
输出
在 Chrome Web 浏览器中打开 textSVG.htm。您可以使用 Chrome/Firefox/Opera 直接查看 SVG 图像,无需任何插件。Internet Explorer 9 及更高版本还支持 SVG 图像渲染。