本帖最后由 马黑黑 于 2024-9-12 20:23 编辑
代码:
<svg width="300" height="300" viewBox="0 0 300 300">
<circle cx="150" cy="150" r="0" fill="none" stroke="purple" stroke-width="4" stroke-dasharray="4 10">
<animate id="a1" attributeName="r" from="0" to="283" dur="8s" repeatCount="indefinite" />
</circle>
<circle cx="150" cy="150" r="0" fill="none" stroke="olive" stroke-width="4" stroke-dasharray="4 10">
<animate id="a2" attributeName="r" from="0" to="283" dur="8s" repeatCount="indefinite" begin="a1.begin+4s" />
</circle>
</svg>
|