Advertisement
Drakaos

Basic Health Potion SVG

Jun 8th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. <svg width="160" height="480">
  2. <defs>
  3. <linearGradient id="grad1" x1="0%" y1="0%" x2="0%" y2="100%">
  4. <stop offset="0%" >
  5. <animate attributeName="stop-color" values="red;fuchsia;red" dur="5" repeatCount="indefinite"></animate>
  6. </stop>
  7. <stop offset="100%">
  8. <animate attributeName="stop-color" values="fuchsia;red;fuchsia" dur="5" repeatCount="indefinite"></animate>
  9. </stop>
  10. </animate>
  11. </linearGradient>
  12. </defs>
  13. <path d=
  14. "M100 200
  15. L200 200
  16. L200 500
  17. Q200 550 150 550
  18. Q100 550 100 500
  19. L100 200
  20. Z
  21. "
  22. fill="url(#grad1)"
  23. transform="translate(-70 -80)"
  24. >
  25. </path>
  26.  
  27. <path d=
  28. "M80 90
  29. L220 90
  30. L220 130
  31. L200 130
  32. L200 500
  33. Q200 550 150 550
  34. Q100 550 100 500
  35. L100 130
  36. L80 130
  37. Z
  38. "
  39. fill-opacity="0"
  40. stroke="rgb(204,255,255)"
  41. stroke-width="20"
  42. stroke-linejoin="round"
  43. transform="translate(-70 -80)"
  44. >
  45. <animate attributeName="stroke" values="#cccccc; #aaaaaa; #cccccc" dur="4s" repeatcount="indefinite" />
  46.  
  47. </path>
  48. </svg>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement