mosaicmap/app/icon.svg
2025-08-14 00:29:23 +08:00

28 lines
1.1 KiB
XML

<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
<!-- 背景圆盘 -->
<circle cx="32" cy="32" r="30" fill="#0a1f33" stroke="#00ffcc" stroke-width="2" />
<!-- 雷达同心圆 -->
<circle cx="32" cy="32" r="10" fill="none" stroke="#00ffcc" stroke-width="1" opacity="0.5"/>
<circle cx="32" cy="32" r="20" fill="none" stroke="#00ffcc" stroke-width="1" opacity="0.5"/>
<!-- 十字刻度线 -->
<line x1="32" y1="2" x2="32" y2="62" stroke="#00ffcc" stroke-width="1" opacity="0.3"/>
<line x1="2" y1="32" x2="62" y2="32" stroke="#00ffcc" stroke-width="1" opacity="0.3"/>
<!-- 雷达扫描扇形 -->
<path d="M32 32 L32 2 A30 30 0 0 1 56.57 14.43 Z"
fill="url(#scanGradient)" opacity="0.6" />
<!-- 扫描渐变定义 -->
<defs>
<linearGradient id="scanGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#00ffcc" stop-opacity="0.6"/>
<stop offset="100%" stop-color="#00ffcc" stop-opacity="0"/>
</linearGradient>
</defs>
<!-- 中心点 -->
<circle cx="32" cy="32" r="2" fill="#00ffcc"/>
</svg>