最高效的WEB程序员学习网站
SVG手册 HTML5手册
 

SVG折线


例 1

<polyline>元素用来绘制各种各样的折线:


  
  Sorry, your browser does not support inline SVG.

上面的图形使用了下面的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>

例 2

另外一个折线例子:


  
  Sorry, your browser does not support inline SVG.

上面的图形使用了下面的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>

代码说明:

  • points属性里定义了各个点的坐标,xy坐标之间用逗号分别,多个坐标之间用空格分割