15 lines
964 B
XML
15 lines
964 B
XML
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200">
|
|
<circle cx="100" cy="100" r="90" fill="#e0e0e0" stroke="#b0b0b0" stroke-width="2" />
|
|
<!-- 雷达网格 -->
|
|
<circle cx="100" cy="100" r="70" fill="none" stroke="#a0a0a0" stroke-width="1" />
|
|
<circle cx="100" cy="100" r="50" fill="none" stroke="#a0a0a0" stroke-width="1" />
|
|
<circle cx="100" cy="100" r="30" fill="none" stroke="#a0a0a0" stroke-width="1" />
|
|
<line x1="100" y1="10" x2="100" y2="190" stroke="#a0a0a0" stroke-width="1" />
|
|
<line x1="10" y1="100" x2="190" y2="100" stroke="#a0a0a0" stroke-width="1" />
|
|
<line x1="30" y1="30" x2="170" y2="170" stroke="#a0a0a0" stroke-width="1" />
|
|
<line x1="170" y1="30" x2="30" y2="170" stroke="#a0a0a0" stroke-width="1" />
|
|
<!-- 雷达扫描扇形 -->
|
|
<path d="M100,100 L100,10 A90,90 0 0,1 160,40 Z" fill="rgba(255, 255, 255, 0.3)" />
|
|
<!-- 中心点 -->
|
|
<circle cx="100" cy="100" r="5" fill="#ffffff" />
|
|
</svg> |