Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <style>
- .img-infinitebouncehover {
- -webkit-animation-duration: 1s;
- animation-duration: 1s;
- -webkit-animation-fill-mode: both;
- animation-fill-mode: both;
- -webkit-animation-timing-function: ease-in-out;
- animation-timing-function: ease-in-out;
- -webkit-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
- }
- .img-infinitebouncehover:hover {
- -webkit-animation-name: bounces;
- animation-name: bounces;
- }
- @-webkit-keyframes bounces {
- 0%, 100%, 20%, 50%, 80% {
- -webkit-transform: translateY(0);
- transform: translateY(0);
- }
- 40% {
- -webkit-transform: translateY(-30px);
- transform: translateY(-30px);
- }
- 60% {
- -webkit-transform: translateY(-15px);
- transform: translateY(-15px);
- }
- }
- @keyframes bounces {
- 0%, 100%, 20%, 50%, 80% {
- -webkit-transform: translateY(0);
- transform: translateY(0);
- }
- 40% {
- -webkit-transform: translateY(-30px);
- transform: translateY(-30px);
- }
- 60% {
- -webkit-transform: translateY(-15px);
- transform: translateY(-15px);
- }
- }
- </style>
- <img src="https://scripted.neocities.org/image.jpg" alt="Bounce Infinite Animation" class="img-infinitebouncehover">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement