Guest User

Untitled

a guest
Jul 18th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <style>
  5. html {
  6. background: rgba(0, 250, 250, 0.8);
  7. }
  8. .spin {
  9. animation: spin 1s linear infinite;
  10. }
  11. @keyframes spin {
  12. from {
  13. transform: rotate(0deg);
  14. }
  15. to {
  16. transform: rotate(360deg);
  17. }
  18. }
  19. </style>
  20.  
  21. <svg height="100" width="100" class="spin">
  22. <defs>
  23. <linearGradient id="Gradient">
  24. <stop offset="0%" stop-color="red"/>
  25. <stop offset="100%" stop-color="#fff"/>
  26. </linearGradient>
  27. </defs>
  28. <circle cx="50" cy="50" r="40" stroke="url(#Gradient)" stroke-width="5" fill="transparent" />
  29. Sorry, your browser does not support inline SVG.
  30. </svg>
  31.  
  32. </body>
  33. </html>
Add Comment
Please, Sign In to add comment