生成一个loading的svg图标
时间: 2024-03-16 09:42:27 浏览: 75
可以使用以下代码生成一个简单的loading的SVG图标:
```html
<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg">
<circle cx="20" cy="20" r="18" fill="none" stroke-width="4" stroke="#888"/>
<path d="M20 2.5A17.5 17.5 0 0 1 37.5 20" fill="none" stroke-width="4" stroke-linecap="round" stroke="#888">
<animateTransform
attributeName="transform"
type="rotate"
from="0 20 20"
to="360 20 20"
dur="0.5s"
repeatCount="indefinite"/>
</path>
</svg>
```
这个SVG图标包含一个圆形和一个路径。圆形表示loading的轮廓,路径表示loading的动画。使用CSS可以调整这个图标的样式和大小。
阅读全文