Guest User

Untitled

a guest
Dec 16th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. .bouncing {
  2. text-align: center;
  3. margin-top: 20px;
  4. border-radius: 50%;
  5. animation: bounce 1s infinite alternate;
  6. -webkit-animation: bounce 1s infinite alternate;
  7. }
  8. @keyframes bounce {
  9. from {
  10. transform: translateY(0px);
  11. }
  12. to {
  13. transform: translateY(-15px);
  14. }
  15. }
  16. @-webkit-keyframes bounce {
  17. from {
  18. transform: translateY(0px);
  19. }
  20. to {
  21. transform: translateY(-15px);
  22. }
  23. }
Add Comment
Please, Sign In to add comment