Bonjour, Je suis actuellement sur l’animation d’un titre : défilement de droite à gauche, mais voilà, le titre s’arrête à left:0 plutôt que de continuer à défiler, puis l’animation recommence. Comment faire pour que le titre continue à glisser sur la gauche ?
Ci-dessous mes CSS :
#conteneur{
position:relative;
margin-top:-5vw;left:0;
width:100%;
min-height: 0;
}
.text
font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif";
font-size: 100vh;
min-height:100vh;
right: 0px;
color: red;
position: absolute;
-webkit-animation: anim 800ms infinite normal ease-out forwards;
animation: anim 800ms infinite normal ease-out forwards;
}
@-webkit-keyframes anim{
0% {width: 0px;}
100% {width: 250px;}
}
@keyframes anim{
0% {width: 0px;}
100% {width: 100%}
}
Merci et bon week-end, Paul-Loup
+0
-0