<polygon>

Baseline 廣泛可用 *

此特性已相當成熟,可在許多裝置和瀏覽器版本上使用。自 ⁨2015 年 7 月⁩以來,各瀏覽器均已提供此特性。

* 此特性的某些部分可能存在不同級別的支援。

<polygon> SVG 元素定義了一個由一系列連線的直線段組成的閉合形狀。最後一個點連線到第一個點。

對於開放形狀,請參閱 <polyline> 元素。

使用語境

分類基本形狀元素、圖形元素、形狀元素
允許內容可包含任意數量、任意順序的下列元素
動畫元素
描述性元素

屬性

此屬性定義了繪製多邊形所需的點列表(x,y 絕對座標對)。值型別<number>+;預設值""可動畫

路徑長度

此屬性允許指定路徑的總長度(以使用者單位)。值型別<number>預設值可動畫

DOM 介面

此元素實現了 SVGPolygonElement 介面。

示例

html
<svg viewBox="0 0 200 100" xmlns="http://www.w3.org/2000/svg">
  <!-- Example of a polygon with the default fill -->
  <polygon points="0,100 50,25 50,75 100,0" />

  <!-- Example of the same polygon shape with stroke and no fill -->
  <polygon points="100,100 150,25 150,75 200,0" fill="none" stroke="black" />
</svg>

規範

規範
Scalable Vector Graphics (SVG) 2
# PolygonElement

瀏覽器相容性

另見