SVG <polygon>元素

2019-10-16 23:02:42

<polygon>元素用於繪製由連線的直線組成的閉合形狀。

宣告

以下是<polygon>元素的語法宣告。這裡只顯示了一些主要屬性。

<polygon
   points="list of points"  > 
</polygon>

屬性

編號 屬性 描述
1 points 構成多邊形的點列表。

範例

檔案:testSVG.html -

<html>
   <title>SVG多邊形</title>
   <body>

      <h1>簡單SVG多邊形圖片</h1>

      <svg width="800" height="800">
         <g>
            <text x="0" y="15" fill="black" >Polygon #1: Without opacity.</text>

            <polygon points="150,75 258,137.5 258,262.5 150,325 42,262.6 42,137.5"
            stroke="black" stroke-width="3" fill="rgb(121,0,121)"></polygon>
         </g> 
      </svg>

   </body>
</html>

在Chrome網路瀏覽器中開啟testSVG.html。 您可以使用Chrome/Firefox/Opera直接檢視SVG影象,無需任何外掛。 Internet Explorer 9及更高版本還支援SVG影象呈現。

使用opacity範例

<html>
   <title>SVG多邊形</title>
   <body>

      <h1>簡單SVG多邊形圖片</h1>

      <svg width="800" height="800"> 
         <g>
            <text x="0" y="15" fill="black" >Polygon #2: With opacity </text>

            <polygon points="150,75 258,137.5 258,262.5 150,325 42,262.6 42,137.5"
            style="fill:rgb(121,0,121);stroke-width:3;
            stroke:rgb(0,0,0);stroke-opacity:0.5;opacity:0.5"></polygon>
         </g>
      </svg>

   </body>
</html>

在瀏覽器中開啟上述程式碼,顯示效果如下 -