Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 891 Bytes

File metadata and controls

37 lines (25 loc) · 891 Bytes
title slug
points
Web/SVG/Attribute/points

{{SVGRef}}

points 属性定义了用来画一个 {{ SVGElement("polyline") }} 元素或画一个 {{SVGElement("polygon") }} 元素的点的数列。

每个点用用户坐标系统中的一个 X 坐标和 Y 坐标定义。用逗号分开每个点的 X 和 Y 坐标标记是一个常用实践(但是并非必要),使用空间标注每个点。

使用说明

类别
<list-of-points>
可变性 Yes

示例

<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>

元素

以下元素可以使用points属性:

  • {{ SVGElement("polyline") }}
  • {{ SVGElement("polygon") }}

规范

{{Specifications}}