SVG 圆形
circle 标签可用来创建一个圆,它只有3个属性用来设置圆形。
<svg width="100%" height="100%" version="1.1" xmlns="http://www.w3.org/2000/svg">
<circle cx="100" cy="50" r="40" stroke="black" stroke-width="2" fill="red"/>
</svg>
代码解释:
- cx 和 cy 属性定义圆点的 x 和 y 坐标。如果省略 cx 和 cy,圆的中心会被设置为 (0, 0)
- r 属性定义圆的半径。
请定义一个半径为20,圆心的x位置为75,圆心的y位置为25,画一个圆.