Bonjour,
J'ai posté il a qq jours sur une rotation de mot que j'ai dû coder en html / css grâce à une démo trouvée en ligne. Mon client n'aime pas l'effet et voudrait l'effet de la vidéo ci-jointe :
https://www.loom.com/share/94a0c7db683848e389434c837eea2a76?sid=db5dfc74-7c0f-425e-9f52-743123c255e9
Merciiiiiiiii pour votre aide
Marine
Voici le code que j'ai fait initialement :
J'ai posté il a qq jours sur une rotation de mot que j'ai dû coder en html / css grâce à une démo trouvée en ligne. Mon client n'aime pas l'effet et voudrait l'effet de la vidéo ci-jointe :
https://www.loom.com/share/94a0c7db683848e389434c837eea2a76?sid=db5dfc74-7c0f-425e-9f52-743123c255e9
Merciiiiiiiii pour votre aide
Marine
Voici le code que j'ai fait initialement :
<section class="title-block">
<div class="rw-words rw-words-1">
<span style="font-weight: bold; color: #ff0799;">ÉMOTION</span>
<span style="font-weight: 400; color: #ff7607;">STORYTELLING</span>
<span style="font-weight: 900; color: #31c8d6;">CRÉATIFS</span>
<span style="font-weight: 600; color: #ff0799;">PASSIONNÉS</span>
<span style="font-weight: bold; color: #994dbc;">EXPERTISE</span>
</div>
</section>
.title-block {
width: 100%;
}
.rw-words{
display: inline-block;
text-align: center;
}
.rw-words span{
position: absolute;
opacity: 0;
width: 96%;
overflow: hidden;
font-size: 100px;
}
.rw-words-1 span{
animation: rotateWordsFirst 15s linear infinite 0s;
}
.rw-words span:nth-child(2) {
animation-delay: 3s;
}
.rw-words span:nth-child(3) {
animation-delay: 6s;
}
.rw-words span:nth-child(4) {
animation-delay: 9s;
}
.rw-words span:nth-child(5) {
animation-delay: 12s;
}
@keyframes rotateWordsFirst {
0% { opacity: 1; animation-timing-function: ease-in; height: 0px; }
8% { opacity: 1; height: 100px; }
19% { opacity: 1; height: 100px; }
25% { opacity: 0; height: 100px; }
100% { opacity: 0; }
}