Animation -> balancier (skater)
by AH_REM
HTML
<div>
<img src="http://ahrem.livehost.fr/choco_rem.png" alt="" />
</div>
CSS
div{
text-align:center;
padding-top:50px;
}
img{
/*on modifie l'axe de transformation :
(positionne l'axe sur la main gauche)*/
-webkit-transform-origin:50% 50%;
/*lance l'animation en boucle*/
-webkit-animation:anim 2s infinite;
}
/*definition de l'animation */
@-webkit-keyframes anim{
from{-webkit-transform:rotate(0deg);}
to{-webkit-transform:rotate(360deg);}
}