Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. <!DOCTYPE>
  2. <html>
  3. <head>
  4. <title>Gytis Kamantauskas 2 laboras</title>
  5. <style>
  6. @keyframes bega {
  7. 100% { background-position: -400px; }
  8. }
  9.  
  10. #zmogeliukas {
  11. background-image: url("zmogeliukas.png");
  12. height: 90px;
  13. width: 50px;
  14. position: absolute;
  15. top: 32%;
  16. z-index: 3;
  17. margin-left: 200px;
  18. animation: bega 1s steps(8) infinite;
  19. }
  20. @keyframes skrenda {
  21. 100% { background-position: -1920px 0;}
  22. }
  23. #cloud{
  24. background-image: url("debesis.png");
  25. height: 350px;
  26. width: 1920px;
  27. margin-top: -500px;
  28. animation: skrenda 6s linear infinite;
  29. }
  30. #background2{
  31. background-image: url("sky.png");
  32. width: 1920px;
  33. height: 440px;
  34. }
  35. @keyframes background {
  36. 100% { background-position: -1920px 0; }
  37. }
  38.  
  39. #background {
  40. background-image: url("background.png");
  41. height: 450px;
  42. width: 1920px;
  43. margin-top: -290px;
  44. animation: background 9s linear infinite;
  45. }
  46. </style>
  47.  
  48. </head>
  49. <body>
  50. <div id="background2"></div>
  51. <div id="cloud"></div>
  52. <div id="background"></div>
  53. <div id="zmogeliukas"></div>
  54. </body>
  55. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement