You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
836 B
23 lines
836 B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="32" height="32">
|
|
<defs>
|
|
<linearGradient id="gradient" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" style="stop-color:#3B82F6;stop-opacity:1" />
|
|
<stop offset="100%" style="stop-color:#1E40AF;stop-opacity:1" />
|
|
</linearGradient>
|
|
</defs>
|
|
|
|
<!-- 背景圆形 -->
|
|
<circle cx="16" cy="16" r="16" fill="url(#gradient)"/>
|
|
|
|
<!-- 声波图案 -->
|
|
<g stroke="white" stroke-width="2" fill="none" stroke-linecap="round">
|
|
<!-- 中心点 -->
|
|
<circle cx="16" cy="16" r="1" fill="white"/>
|
|
|
|
<!-- 声波环 -->
|
|
<circle cx="16" cy="16" r="5" opacity="0.9"/>
|
|
<circle cx="16" cy="16" r="8" opacity="0.7"/>
|
|
<circle cx="16" cy="16" r="11" opacity="0.5"/>
|
|
<circle cx="16" cy="16" r="14" opacity="0.3"/>
|
|
</g>
|
|
</svg>
|