SVG <circle>元素

2019-10-16 23:02:37

<circle>元素用於繪製具有中心點和給定半徑的圓。

宣告

以下是<circle>元素的語法宣告。 這裡只列出了幾個主要屬性。

<circle
   cx="x-axis co-ordinate"
   cy="y-axis co-ordinate"
   r="length" >   
</circle>

屬性

編號 屬性 描述
1 cx 圓心的x軸坐標。 預設值是0
2 cy 圓心的y軸坐標。 預設值是0
3 r 圓的半徑。

範例

檔案:textSVG.html -

<html>
   <title>SVG圓形</title>
   <body>

      <h1>簡單SVG圓形圖片</h1>

      <svg width="800" height="800">
         <g>
            <text x="0" y="15" fill="black" >Circle #1: Without opacity.</text>
            <circle cx="100" cy="100" r="50" stroke="black" 
            stroke-width="3" fill="rgb(121,0,121)"></circle>
         </g> 
      </svg>

   </body>
</html>

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

範例:用不透明的圓圈

<html>
   <title>SVG圓形</title>
   <body>

      <h1>簡單SVG圓形圖片</h1>

      <svg width="800" height="800"> 
         <g>
            <text x="0" y="15" fill="black" >Circle #2: With opacity </text>
            <circle cx="100" cy="100" r="50"
            style="fill:rgb(121,0,121);stroke-width:3;
            stroke:rgb(0,0,0);stroke-opacity:0.5;opacity:0.5"> </circle>
         </g>
      </svg>

   </body>
</html>

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