画一个没有填充的黑色圆圈

  • cxcy 值指定圆心的位置。
  • 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>

结果:

StackOverflow 文档