default-avatar.svg 992 B

12345678910111213141516171819202122232425262728293031
  1. <svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200">
  2. <defs>
  3. <linearGradient id="bgGrad" x1="0%" y1="0%" x2="100%" y2="100%">
  4. <stop offset="0%" style="stop-color:#FFE5F1;stop-opacity:1" />
  5. <stop offset="100%" style="stop-color:#FFECF3;stop-opacity:1" />
  6. </linearGradient>
  7. <linearGradient id="iconGrad" x1="0%" y1="0%" x2="100%" y2="100%">
  8. <stop offset="0%" style="stop-color:#E91E63;stop-opacity:0.6" />
  9. <stop offset="100%" style="stop-color:#FF6B9D;stop-opacity:0.4" />
  10. </linearGradient>
  11. </defs>
  12. <!-- 背景圆 -->
  13. <circle cx="100" cy="100" r="100" fill="url(#bgGrad)" />
  14. <!-- 头像图标 -->
  15. <!-- 头部 -->
  16. <circle cx="100" cy="75" r="25" fill="url(#iconGrad)" />
  17. <!-- 身体 -->
  18. <ellipse cx="100" cy="140" rx="40" ry="30" fill="url(#iconGrad)" />
  19. <!-- 装饰边框 -->
  20. <circle cx="100" cy="100" r="98" fill="none" stroke="rgba(233, 30, 99, 0.2)" stroke-width="2" />
  21. </svg>