favicon.svg 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
  2. <defs>
  3. <linearGradient id="bg-gradient" x1="0%" y1="0%" x2="100%" y2="100%">
  4. <stop offset="0%" style="stop-color:#4f8cff;stop-opacity:1" />
  5. <stop offset="100%" style="stop-color:#6366f1;stop-opacity:1" />
  6. </linearGradient>
  7. <linearGradient id="play-gradient" x1="0%" y1="0%" x2="100%" y2="100%">
  8. <stop offset="0%" style="stop-color:#ffffff;stop-opacity:1" />
  9. <stop offset="100%" style="stop-color:#e0e7ff;stop-opacity:1" />
  10. </linearGradient>
  11. </defs>
  12. <!-- 背景圆角矩形 -->
  13. <rect x="32" y="32" width="448" height="448" rx="96" ry="96" fill="url(#bg-gradient)"/>
  14. <!-- 多平台网格图案 -->
  15. <g opacity="0.15">
  16. <rect x="80" y="80" width="160" height="160" rx="24" fill="#fff"/>
  17. <rect x="272" y="80" width="160" height="160" rx="24" fill="#fff"/>
  18. <rect x="80" y="272" width="160" height="160" rx="24" fill="#fff"/>
  19. <rect x="272" y="272" width="160" height="160" rx="24" fill="#fff"/>
  20. </g>
  21. <!-- 中心播放按钮 -->
  22. <circle cx="256" cy="256" r="120" fill="url(#play-gradient)" opacity="0.95"/>
  23. <!-- 播放三角形 -->
  24. <path d="M 220 180 L 220 332 L 340 256 Z" fill="url(#bg-gradient)"/>
  25. <!-- 装饰性连接线 -->
  26. <g stroke="#fff" stroke-width="4" stroke-linecap="round" opacity="0.6">
  27. <line x1="136" y1="160" x2="180" y2="200"/>
  28. <line x1="376" y1="160" x2="332" y2="200"/>
  29. <line x1="136" y1="352" x2="180" y2="312"/>
  30. <line x1="376" y1="352" x2="332" y2="312"/>
  31. </g>
  32. <!-- 角落小圆点 -->
  33. <circle cx="136" cy="160" r="12" fill="#fff" opacity="0.8"/>
  34. <circle cx="376" cy="160" r="12" fill="#fff" opacity="0.8"/>
  35. <circle cx="136" cy="352" r="12" fill="#fff" opacity="0.8"/>
  36. <circle cx="376" cy="352" r="12" fill="#fff" opacity="0.8"/>
  37. </svg>