|
|

楼主 |
发表于 2024-9-13 08:22
|
显示全部楼层
- <svg width="600" height="600" viewBox="0 0 300 300">
- <circle cx="150" cy="150" r="0" fill="none" stroke="red" stroke-width="4" stroke-dasharray="6 15 3">
- <animate id="a1" attributeName="r" from="0" to="250" dur="10s" begin="0;a7.begin+6" />
- </circle>
- <circle cx="150" cy="150" r="0" fill="none" stroke="orange" stroke-width="4" stroke-dasharray="6 15 3">
- <animate id="a2" attributeName="r" from="0" to="250" dur="10s" begin="a1.begin+6s" />
- </circle>
- <circle cx="150" cy="150" r="0" fill="none" stroke="yellow" stroke-width="4" stroke-dasharray="6 15 3">
- <animate id="a3" attributeName="r" from="0" to="250" dur="10s" begin="a2.begin+6s" />
- </circle>
- <circle cx="150" cy="150" r="0" fill="none" stroke="green" stroke-width="4" stroke-dasharray="6 15 3">
- <animate id="a4" attributeName="r" from="0" to="250" dur="10s" begin="a3.begin+6s" />
- </circle>
- <circle cx="150" cy="150" r="0" fill="none" stroke="cyan" stroke-width="4" stroke-dasharray="6 15 3">
- <animate id="a5" attributeName="r" from="0" to="250" dur="10s" begin="a4.begin+6s" />
- </circle>
- <circle cx="150" cy="150" r="0" fill="none" stroke="blue" stroke-width="4" stroke-dasharray="6 15 3">
- <animate id="a6" attributeName="r" from="0" to="250" dur="10s" begin="a5.begin+6s" />
- </circle>
- <circle cx="150" cy="150" r="0" fill="none" stroke="purple" stroke-width="4" stroke-dasharray="6 15 3">
- <animate id="a7" attributeName="r" from="0" to="250" dur="10s" begin="a6.begin+6s" />
- </circle>
- </svg>
复制代码 |
|