1.新疆大屏新需求
This commit is contained in:
2025-09-19 18:34:40 +08:00
parent 1714ff19f5
commit a97d9c64aa
41 changed files with 1121 additions and 217 deletions
+22
View File
@@ -0,0 +1,22 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 64 64">
<defs>
<radialGradient id="a" cx="32" cy="32" r="32" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="red" stop-opacity="0"/>
<stop offset="1" stop-color="red"/>
</radialGradient>
<radialGradient id="b" cy="32" r="20" xlink:href="#a"/>
</defs>
<g data-name="图层 2">
<g data-name="图层 1">
<circle cx="32" cy="32" r="6" style="fill:url(#a);opacity:1">
<animate attributeName="r" from="6" to="32" begin="0s" dur="2s" repeatCount="indefinite"/>
<animate attributeName="opacity" from="1" to="0" begin="0s" dur="2s" repeatCount="indefinite"/>
</circle>
<circle cx="32" cy="32" r="6" style="fill:url(#b);opacity:1">
<animate attributeName="r" from="6" to="32" begin="1s" dur="2s" repeatCount="indefinite"/>
<animate attributeName="opacity" from="1" to="0" begin="1s" dur="2s" repeatCount="indefinite"/>
</circle>
<circle cx="32" cy="32" r="6" style="fill:red"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB