SVG <circle>
SVG 圆形
<circle> 标签可用来创建一个圆:
下面是SVG代码:
实例
<svg height="100" width="100">
<circle cx="50" cy="50" r="40" stroke="black"
stroke-width="3" fill="red" />
</svg>
亲自试一试 »
代码解析:
- cx 和 cy 属性定义圆点的 x 和 y 坐标。如果省略 cx 和 cy,圆的中心会被设置为(0, 0)
- r 属性定义圆的半径