Flipping Cat -01 <!-- img { width:200px; height:200px; position:relative; animation:myanimation 5s infinite; -moz-animation:myanimation 5s infinite; /* Firefox */ -webkit-animation:myanimation 15s infinite; /* Safari and Chrome */ -o-animation:myanimation 5s infinite; /* Opera */ } @keyframes myanimation { 0% {top:0px;} 25% {top:200px;left:300px} 75% {top:50px;left:150px; width:100px;} 100% {top:300px;height:50px;} } @-moz-keyframes myanimation /* Firefox */ { 0% {top:0px;} 25% {top:200px;} 75% {top:50px;left:200px;width:100px;} 100% {top:100px;height:50px;} } @-webkit-keyframes myanimation /* Safari and Chrome */ { 0% {top:0px;} 25% {top:200px;left:300px} 75% {top:50px;left:150px; width:100px;} 100% {top:300px;height:50px;} } @-o-keyframes myanimation /* Opera */ { 0% {top:0px;} 25% {top:200px;} 75% {top:50px;left:200px;width:100px;} 100% {top:100px;height:50px;} } -->