1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| <svg viewBox="0 0 800 500" xmlns="http://www.w3.org/2000/svg"> <rect width="800" height="500" fill="#311b92"/> <g stroke="#00bcd4" stroke-width="2" opacity="0.3" fill="none"> <ellipse cx="400" cy="250" rx="300" ry="200"/> <ellipse cx="400" cy="250" rx="260" ry="175"/> <ellipse cx="400" cy="250" rx="220" ry="150"/> </g> <g fill="#ffeb3b"> <polygon points="200,100 205,115 220,115 208,125 212,140 200,130 188,140 192,125 180,115 195,115"/> <polygon points="600,80 605,95 620,95 608,105 612,120 600,110 588,120 592,105 580,95 595,95"/> <polygon points="150,280 155,292 170,292 158,300 162,315 150,307 138,315 142,300 130,292 145,292"/> <polygon points="650,250 655,265 670,265 658,275 662,290 650,280 638,290 642,275 630,265 645,265"/> </g> <circle cx="400" cy="250" r="100" fill="#1a237e" stroke="#ffeb3b" stroke-width="4"/> <text x="400" y="235" font-family="monospace" font-size="36" fill="#ffeb3b" text-anchor="middle" font-weight="bold">10,000</text> <text x="400" y="265" font-family="sans-serif" font-size="16" fill="#9e9e9e" text-anchor="middle">GitHub Stars</text> <rect x="40" y="40" width="120" height="70" fill="#263238" stroke="#00bcd4" stroke-width="1" rx="5"/> <text x="55" y="65" font-family="sans-serif" font-size="12" fill="#fff">阿里巴巴</text> <text x="55" y="85" font-family="sans-serif" font-size="10" fill="#9e9e9e">合作邀请</text> <rect x="640" y="40" width="120" height="70" fill="#263238" stroke="#00bcd4" stroke-width="1" rx="5"/> <text x="655" y="65" font-family="sans-serif" font-size="12" fill="#fff">字节跳动</text> <text x="655" y="85" font-family="sans-serif" font-size="10" fill="#9e9e9e">技术交流</text> <text x="400" y="490" font-family="sans-serif" font-size="20" fill="#9e9e9e" text-anchor="middle">第三章 · 风暴中心</text> </svg>
|