SVG <polygon>
SVG 多边形 - <polygon>
<polygon>
元素用于创建包含至少三个边的图形。
多边形是由直线组成的,并且形状是“封闭的”(所有线都连接起来)。
Polygon 一词源自希腊语。"Poly" 意为“许多”,"gon" 意为“角度”。
例子 1
下例创建拥有三个边的多边形:
这是 SVG 代码:
<svg height="210" width="500"> <polygon points="200,10 250,190 160,210" style="fill:lime;stroke:purple;stroke-width:1" /> </svg>
代码解释:
- points 属性定义多边形每个角的 x 和 y 坐标
例子 2
下例创建拥有四个边的多边形:
这是 SVG 代码:
<svg height="250" width="500"> <polygon points="220,10 300,210 170,250 123,234" style="fill:lime;stroke:purple;stroke-width:1" /> </svg>
例子 3
使用 <polygon>
元素创建一颗星:
这是 SVG 代码:
<svg height="210" width="500"> <polygon points="100,10 40,198 190,78 10,78 160,198" style="fill:lime;stroke:purple;stroke-width:5;fill-rule:nonzero;" /> </svg>
例子 4
将 fill-rule 属性更改为 "evenodd"
:
这是 SVG 代码:
<svg height="210" width="500"> <polygon points="100,10 40,198 190,78 10,78 160,198" style="fill:lime;stroke:purple;stroke-width:5;fill-rule:evenodd;" /> </svg>