58 lines
2.2 KiB
Plaintext
58 lines
2.2 KiB
Plaintext
|
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200">
|
||
|
<!-- 背景圆形 -->
|
||
|
<circle cx="100" cy="100" r="95" fill="url(#grad1)" />
|
||
|
|
||
|
<!-- 渐变定义 -->
|
||
|
<defs>
|
||
|
<linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%">
|
||
|
<stop offset="0%" style="stop-color:#1e5799;stop-opacity:1" />
|
||
|
<stop offset="50%" style="stop-color:#2989d8;stop-opacity:1" />
|
||
|
<stop offset="100%" style="stop-color:#7db9e8;stop-opacity:1" />
|
||
|
</linearGradient>
|
||
|
<linearGradient id="grad2" x1="0%" y1="0%" x2="100%" y2="100%">
|
||
|
<stop offset="0%" style="stop-color:#ffffff;stop-opacity:0.9" />
|
||
|
<stop offset="100%" style="stop-color:#f0f0f0;stop-opacity:0.8" />
|
||
|
</linearGradient>
|
||
|
<filter id="shadow" x="-20%" y="-20%" width="140%" height="140%">
|
||
|
<feGaussianBlur in="SourceAlpha" stdDeviation="5" />
|
||
|
<feOffset dx="0" dy="4" result="offsetblur" />
|
||
|
<feComponentTransfer>
|
||
|
<feFuncA type="linear" slope="0.3" />
|
||
|
</feComponentTransfer>
|
||
|
<feMerge>
|
||
|
<feMergeNode />
|
||
|
<feMergeNode in="SourceGraphic" />
|
||
|
</feMerge>
|
||
|
</filter>
|
||
|
</defs>
|
||
|
|
||
|
<!-- 内部圆形 -->
|
||
|
<circle cx="100" cy="100" r="75" fill="url(#grad2)" filter="url(#shadow)" />
|
||
|
|
||
|
<!-- 平衡图标 -->
|
||
|
<g transform="translate(50, 60) scale(0.5)" fill="#1e5799">
|
||
|
<!-- 天平支架 -->
|
||
|
<rect x="95" y="30" width="10" height="80" rx="5" ry="5" />
|
||
|
|
||
|
<!-- 天平横杆 -->
|
||
|
<rect x="40" y="40" width="120" height="8" rx="4" ry="4" />
|
||
|
|
||
|
<!-- 左盘 -->
|
||
|
<ellipse cx="50" cy="70" rx="30" ry="10" />
|
||
|
<path d="M50,70 L80,45 L20,45 Z" fill="#2989d8" opacity="0.7" />
|
||
|
|
||
|
<!-- 右盘 -->
|
||
|
<ellipse cx="150" cy="70" rx="30" ry="10" />
|
||
|
<path d="M150,70 L180,45 L120,45 Z" fill="#2989d8" opacity="0.7" />
|
||
|
|
||
|
<!-- 底座 -->
|
||
|
<path d="M80,110 L120,110 L115,130 L85,130 Z" />
|
||
|
</g>
|
||
|
|
||
|
<!-- 装饰元素 -->
|
||
|
<circle cx="100" cy="100" r="90" fill="none" stroke="white" stroke-width="2" stroke-opacity="0.3" />
|
||
|
<circle cx="100" cy="100" r="85" fill="none" stroke="white" stroke-width="1" stroke-opacity="0.2" />
|
||
|
|
||
|
<!-- 光晕效果 -->
|
||
|
<circle cx="70" cy="70" r="15" fill="white" opacity="0.2" />
|
||
|
</svg>
|