Advertisement
Guest User

Untitled

a guest
Aug 26th, 2019
967
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. .animated {
  2. -webkit-animation-duration: .5s;
  3. animation-duration: .5s;
  4. -webkit-animation-fill-mode: both;
  5. animation-fill-mode: both;
  6. -webkit-animation-timing-function: linear;
  7. animation-timing-function: linear;
  8. animation-iteration-count: infinite;
  9. -webkit-animation-iteration-count: infinite;
  10. }
  11. @-webkit-keyframes bounce {
  12. 0%, 100% {
  13. -webkit-transform: translateY(0);
  14. }
  15. 50% {
  16. -webkit-transform: translateY(-5px);
  17. }
  18. }
  19. @keyframes bounce {
  20. 0%, 100% {
  21. transform: translateY(0);
  22. }
  23. 50% {
  24. transform: translateY(-5px);
  25. }
  26. }
  27. .bounce {
  28. -webkit-animation-name: bounce;
  29. animation-name: bounce;
  30. }
  31.  
  32. hr {
  33. position: relative;
  34. top: 92px;
  35. left: -300px;
  36. width: 200px;
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement