Advertisement
Guest User

kamilszuflav2

a guest
Dec 12th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Document</title>
  6. <style>
  7. .fej {
  8. height: 75px;
  9. width: 75px;
  10. position: absolute;
  11. top: 140px;
  12. left: 608.5px;
  13. animation-name:no1;
  14. animation-duration: 6s;
  15. animation-iteration-count: infinite;
  16. }
  17. .lej {
  18. height: 300px;
  19. width: 300px;
  20. position: absolute;
  21. top: 140px;
  22. left: 500px;
  23. animation-name: no2;
  24. animation-duration: 6s;
  25. animation-iteration-count: infinite;
  26. }
  27.  
  28. body {
  29. animation-name: no3;
  30. animation-duration: 3s;
  31. animation-iteration-count: infinite;
  32. }
  33. div {
  34.  
  35. }
  36.  
  37. }
  38. @keyframes no1 {
  39. 0%{background-color: green;}
  40. 25%{ background-color: red;}
  41. 50%{background-color: green; }
  42. 75%{background-color: red; }
  43. 100%{background-color: green;}
  44. }
  45. @keyframes no2 {
  46. 0%{transform: translate(0px,600px) rotate(180deg)}
  47. 25%{}
  48. 50%{}
  49. 75%{}
  50. 100%{}
  51. }
  52. @keyframes no3 {
  53. 0%{transform: translate(200px,630px) rotate(190deg)}
  54. 25%{}
  55. 50%{}
  56. 75%{}
  57. 100%{}
  58. }
  59.  
  60.  
  61.  
  62. </style>
  63. </head>
  64. <body>
  65. <div>WESOLYCH SWIAT</div>
  66. <img class="lej" src="pp.png">
  67. <img class="fej" src="ppp.png">
  68.  
  69.  
  70. </body>
  71. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement