15 lines
770 B
XML
15 lines
770 B
XML
|
|
<svg width="400" height="200" xmlns="http://www.w3.org/2000/svg">
|
||
|
|
<defs>
|
||
|
|
<linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%">
|
||
|
|
<stop offset="0%" style="stop-color:#667eea;stop-opacity:1" />
|
||
|
|
<stop offset="100%" style="stop-color:#764ba2;stop-opacity:1" />
|
||
|
|
</linearGradient>
|
||
|
|
</defs>
|
||
|
|
<rect width="100%" height="100%" fill="url(#grad1)"/>
|
||
|
|
<g fill="#ffffff" text-anchor="middle" font-family="Arial, sans-serif" font-weight="bold">
|
||
|
|
<text x="200" y="100" font-size="24" dy="0.35em">旅行结伴</text>
|
||
|
|
<text x="200" y="130" font-size="14" opacity="0.8">探索世界,结识旅伴</text>
|
||
|
|
</g>
|
||
|
|
<circle cx="80" cy="100" r="30" fill="rgba(255,255,255,0.1)"/>
|
||
|
|
<circle cx="320" cy="60" r="20" fill="rgba(255,255,255,0.1)"/>
|
||
|
|
</svg>
|