这就是我用中风而没有填充的方式
fill: none !important; stroke-width: 1px;
>我想要双击.
解决方法
遗憾的是,您无法将SVG设置为双击,只有虚线或实线.
相反,只需创建一个完全相同的元素,但要减少它所需的大小/半径.
.circle { fill: none; stroke: black; }
<svg height="100" width="100"> <circle class="circle" cx="50" cy="50" r="40" stroke-width="1" /> <circle class="circle" cx="50" cy="50" r="38" stroke-width="1" /> </svg>