Advertisement
Guest User

Untitled

a guest
Dec 10th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 KB | None | 0 0
  1. <DOCTYPE !HTML>
  2. <html>
  3. <head>
  4. <style>
  5.  
  6. #kwadrat1
  7. {
  8. top: 100px;
  9. left: 800px;
  10. width: 50px;
  11. height: 50px;
  12. position: absolute;
  13. animation-duration: 3s;
  14. transform-origin: 125px 125px;
  15. animation-name: eeee;
  16. animation-iteration-count: infinite;
  17. animation-timing-function: linear;
  18. border-radius:30px;
  19. }
  20.  
  21. @keyframes eeee
  22. {
  23. 0% {transform: rotate(0deg); background-color: #000066;}
  24. 25% {background-color: #0000e6;}
  25. 50% {background-color: #4d4dff;}
  26. 75% {background-color: #0000e6;}
  27. 100% {transform: rotate(360deg); background-color: #000066;}
  28. }
  29.  
  30. #kwadrat2
  31. {
  32. top: 100px;
  33. left: 800px;
  34. width: 50px;
  35. height: 50px;
  36. position: absolute;
  37. animation-duration: 3s;
  38. transform-origin: 125px 125px;
  39. animation-name: eee;
  40. animation-iteration-count: infinite;
  41. animation-timing-function: linear;
  42. border-radius:30px;
  43. }
  44.  
  45. @keyframes eee
  46. {
  47. 0% {transform: rotate(360deg); background-color: #000066;}
  48. 25% {background-color: #0000e6;}
  49. 50% {background-color: #4d4dff;}
  50. 75% {background-color: #0000e6;}
  51. 100% {transform: rotate(0deg); background-color: #000066;}
  52. }
  53.  
  54.  
  55.  
  56. </style>
  57. </head>
  58. <body>
  59. <div id="kwadrat1"></div>
  60. <div id="kwadrat2"></div>
  61. <div id="kwadrat3"></div>
  62. <div id="kwadrat4"></div>
  63. </div>
  64. </body>
  65. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement