Advertisement
RageQxeen

Image Bounce

Nov 4th, 2022
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. // CSS //
  2.  
  3. #image {
  4. width: 45vw;
  5. margin: 0px;
  6. border: none;
  7. height: 41vw;
  8. background-color:transparent;
  9. position: absolute;
  10. right: 27vw;
  11. bottom: 0vw;
  12. background-image:url("https://i.ibb.co/JnBMmSy/4.png");
  13. background-repeat:no-repeat;
  14. background-position: bottom;
  15. background-size: 100%;
  16. -webkit-animation: bounce;
  17. animation: bounce;
  18. -webkit-animation-duration: 3s;
  19. animation-duration: 3s;
  20. -webkit-animation-fill-mode: both;
  21. animation-fill-mode: both;
  22. -webkit-animation-timing-function: linear;
  23. animation-timing-function: linear;
  24. animation-iteration-count: infinite;
  25. -webkit-animation-iteration-count: infinite;
  26. }
  27.  
  28. @keyframes bounce{
  29. 0% {bottom: 3vw;}
  30. 50% {bottom: 7vw;}
  31. 100% {bottom: 3vw;}}
  32.  
  33. @-webkit-keyframes bounce {
  34. 0% {bottom: 3vw;}
  35. 50% {bottom: 7vw;}
  36. 100% {bottom: 3vw;}
  37. }
  38.  
  39. // HTML //
  40.  
  41. <div id="image"></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement