示例
下面的示例创建多个点相连的折线:
下面是 SVG 代码
<html lang="en">
<head>
<meta charset="UTF-8">
<title>欢迎来到蝴蝶教程</title>
</head>
<body>
<h1>SVG 折线</h1>
<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>
</body>
</html>
尝试一下
SVG 代码说明:
- points 属性定义绘制折线所需的点列表(x和y坐标对)
下面示例演示了仅有直线相连的折线:
下面是 SVG 代码
<html lang="en">
<head>
<meta charset="UTF-8">
<title>欢迎来到蝴蝶教程</title>
</head>
<body>
<h1>SVG 折线</h1>
<svg height="200" 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>
</body>
</html>
尝试一下