style.css 675 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. .game{
  2. width: 600px;
  3. height: 200px;
  4. border-bottom: 1px solid #000;
  5. margin: auto;
  6. }
  7. #dino{
  8. width: 50px;
  9. height: 50px;
  10. background-image: url(img/dino.jpg);
  11. background-size: 50px 50px;
  12. position: relative;
  13. top: 150px;
  14. }
  15. #cactus{
  16. width: 20px;
  17. height: 40px;
  18. background-image: url(img/cactus.png);
  19. background-size: 20px 40px;
  20. position: relative;
  21. top: 110px;
  22. left: 580px;
  23. animation: cactusMov 2s infinite linear;
  24. }
  25. @keyframes cactusMov{
  26. 0%{
  27. left: 580px;
  28. }
  29. 100%{
  30. left: -20px;
  31. }
  32. }
  33. .jump{
  34. animation: jump 0.3s linear;
  35. }
  36. @keyframes jump{
  37. 0%{
  38. top: 150px;
  39. }
  40. 30%{
  41. top: 130px;
  42. }
  43. 50%{
  44. top: 80px;
  45. }
  46. 80%{
  47. top: 130px;
  48. }
  49. 100%{
  50. left: 1500px;
  51. }
  52. }