20 lines
321 B
CSS
20 lines
321 B
CSS
|
|
/* Animation de défilement infini pour les bandeaux */
|
||
|
|
@keyframes scroll {
|
||
|
|
0% {
|
||
|
|
transform: translateX(0);
|
||
|
|
}
|
||
|
|
100% {
|
||
|
|
transform: translateX(-50%);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.animate-ticker {
|
||
|
|
display: flex;
|
||
|
|
width: max-content;
|
||
|
|
animation: scroll linear infinite;
|
||
|
|
}
|
||
|
|
|
||
|
|
.animate-ticker:hover {
|
||
|
|
animation-play-state: paused;
|
||
|
|
}
|