Advertisement
Guest User

Karakan 3

a guest
Mar 23rd, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. @keyframes rotate{
  2. from {
  3. transform:rotate(0deg);
  4. }
  5. to{
  6. transform:rotate(360deg);
  7.  
  8. }
  9. }
  10.  
  11. .figur{
  12. fill:aqua;
  13.  
  14. }
  15. .animation{
  16. animation-name:rotate;
  17. animation-duration:4s;
  18. animation-iteration-count:infinite;
  19. transform-origin:center;
  20.  
  21. }
  22. @keyframes rotate{
  23. 0%{transform:rotate(0deg);}
  24. 25%{transform:rotate(360deg);}
  25. 100%{transform:rotate(0deg);}
  26. }
  27.  
  28. <!DOCTYPE html>
  29.  
  30. <html>
  31. <head>
  32. <title></title>
  33. <meta charset="utf-8" />
  34. <link rel="stylesheet" type="text/css" href="content/MyCss.css" />
  35. </head>
  36. <body>
  37. <svg width="800" height="300" vievBox="0 0 800 300"
  38. style="border:1px solid rgb(0,0,255)">
  39. <polygon class="figur animation" points="'400,280,310,150,400,20,490,150"></polygon>
  40. </svg>
  41. </body>
  42. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement