Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #image01{
- -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;
- animation-iteration-count: infinite;
- -webkit-animation-iteration-count: infinite;
- display: inline-block;
- z-index:9;}
- #image02:hover{
- animation-name: bounce;
- -moz-animation-name: bounce;}
- @keyframes bounce{
- 0%, 100%, 20%, 50%, 80% {
- -webkit-transform: translateY(0);
- -ms-transform: translateY(0);
- transform: translateY(0)}
- 40% {
- -webkit-transform: translateY(-30px);
- -ms-transform: translateY(-30px);
- transform: translateY(-30px)}
- 60% {
- -webkit-transform: translateY(-15px);
- -ms-transform: translateY(-15px);
- transform: translateY(-15px)}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement