68 lines
2.0 KiB
XML
68 lines
2.0 KiB
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" width="100%" height="100%">
|
|
<!-- 圆形轮廓
|
|
-->
|
|
<circle cx="500" cy="500" r="480" fill="#505050" stroke="#505050" stroke-width="8"/>
|
|
|
|
<defs>
|
|
<clipPath id="circleClip">
|
|
<circle cx="500" cy="500" r="480" />
|
|
</clipPath>
|
|
</defs>
|
|
|
|
<g clip-path="url(#circleClip)">
|
|
<!-- 五色 16:9 长方形 -->
|
|
<g>
|
|
<rect x="100" y="275" width="160" height="450" fill="#FF6B6B" />
|
|
<rect x="260" y="275" width="160" height="450" fill="#FFD93D" />
|
|
<rect x="420" y="275" width="160" height="450" fill="#6BCB77" />
|
|
<rect x="580" y="275" width="160" height="450" fill="#4D96FF" />
|
|
<rect x="740" y="275" width="160" height="450" fill="#A66BFF" />
|
|
<rect x="100" y="275" width="800" height="450" fill="none" stroke="rgba(0,0,0,0.08)" />
|
|
</g>
|
|
|
|
<!-- 倒立的 A -->
|
|
<text x="500" y="260"
|
|
font-family="Arial, Helvetica, sans-serif"
|
|
font-weight="900"
|
|
font-size="280"
|
|
text-anchor="middle"
|
|
dominant-baseline="text-before-edge"
|
|
fill="#808080"
|
|
transform="rotate(180 500 285)">
|
|
A
|
|
</text>
|
|
|
|
<text x="500" y="370"
|
|
font-family="Arial, Helvetica, sans-serif"
|
|
font-weight="900"
|
|
font-size="250"
|
|
text-anchor="middle"
|
|
dominant-baseline="text-before-edge"
|
|
fill="#808080">
|
|
TV
|
|
</text>
|
|
|
|
<!-- 放大的 o 和 e -->
|
|
<text x="300" y="620"
|
|
font-family="Arial, Helvetica, sans-serif"
|
|
font-weight="900"
|
|
font-size="300"
|
|
text-anchor="middle"
|
|
dominant-baseline="text-before-edge"
|
|
fill="#808080">
|
|
o
|
|
</text>
|
|
|
|
<text x="700" y="620"
|
|
font-family="Arial, Helvetica, sans-serif"
|
|
font-weight="900"
|
|
font-size="300"
|
|
text-anchor="middle"
|
|
dominant-baseline="text-before-edge"
|
|
fill="#808080">
|
|
e
|
|
</text>
|
|
</g>
|
|
</svg>
|
|
|