Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <style>
- .bounce {
- position: relative;
- top: 0;
- animation: bounce 0.3s ease infinite alternate;
- }
- @keyframes bounce {
- 100% {
- top: -.2rem;
- }
- }
- </style>
- <div class="bounce">bounce!</div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement