SVG
属性 | Attributes

points

points

points属性定义绘制一个<polyline>or <polygon>元素所需的点列表。

每个点由用户坐标系中的X和Y坐标定义。使用逗号标记每个点的X和Y坐标并使用空格标出每个点是常见的做法(但不是必需的)。

用法说明

分类没有
<列表的点>
动画
规范性文件SVG 1.1(第2版):多义线元素SVG 1.1(第2版):多边形元素

例子

<svg xmlns="http://www.w3.org/2000/svg" version="1.1">   <polygon points="100,10 250,150 200,110"   style="fill:lime;stroke:purple;stroke-width:1" /> </svg>

元素

The following elements can use the points attribute

  • <polyline>

  • <polygon>