畫一個沒有填充的黑色圓圈
cx和cy值指定圓心的位置。r屬性指定圓的半徑大小。
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<circle cx="40" cy="40" r="30" stroke="black" fill="none" />
</svg>
結果:

cx 和 cy 值指定圓心的位置。r 屬性指定圓的半徑大小。<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<circle cx="40" cy="40" r="30" stroke="black" fill="none" />
</svg>
結果:
