Advertisement
Drakaos

Basic Player Circle SVG

Jun 21st, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. <svg width="200" height="200">
  2. <defs>
  3. <radialGradient id="circle" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
  4. <stop offset="0%" stop-color="black"stop-opacity="0"/>
  5. <stop offset="75%" stop-color="black"stop-opacity="0.05"/>
  6. <stop offset="100%" stop-color="black"stop-opacity="0.1"/>
  7. </radialGradient>
  8. </defs>
  9. <circle cx="100" cy="100" r="90" fill="tan"/>
  10. <circle cx="100" cy="100" r="95" stroke="silver" stroke-width="10" fill="url(#circle)"/>
  11. </svg>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement