bonjour
je voudrais enchainer l'animation d'une image d'abord sur un axe vertical puis horizontal
j'ai trouve ceci...
Si je change les Y par des X j'ai une rotation sur un axe horizontal mais comment enchainer les deux sur la meme image et pouvoir stopper l'animation quand on met la souris?
merci
je voudrais enchainer l'animation d'une image d'abord sur un axe vertical puis horizontal
j'ai trouve ceci...
Si je change les Y par des X j'ai une rotation sur un axe horizontal mais comment enchainer les deux sur la meme image et pouvoir stopper l'animation quand on met la souris?
merci
<style>
div.slidecaption {
-webkit-animation-name: spinner;
-webkit-animation-timing-function: linear;
-webkit-animation-iteration-count: infinite;
-webkit-animation-duration: 12s;
-webkit-animation-delay: 2s; /* Chrome, Safari, Opera */
animation-delay: 2s;
animation-name: spinner;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-duration: 12s;
-webkit-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;
-ms-transform-style: preserve-3d;
transform-style: preserve-3d;
}
/* WebKit and Opera browsers */
@-webkit-keyframes spinner {
from
{
-webkit-transform: rotateY(0deg);
}
to {
-webkit-transform: rotateY(-360deg);
}
}
/* all other browsers */
@keyframes spinner {
from {
-moz-transform: rotateY(0deg);
-ms-transform: rotateY(0deg);
transform: rotateY(0deg);
}
to
{
-moz-transform: rotateY(-360deg);
-ms-transform: rotateY(-360deg);
transform: rotateY(-360deg);
}
}
</style>
<div class="slidecaption" style="width: 170px; height: 145px;"><img src="image.gif"></div>