2026-08-20 07:56:32 +00:00
|
|
|
/* 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;
|
2026-08-20 08:29:28 +00:00
|
|
|
will-change: transform;
|
2026-08-20 07:56:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.animate-ticker:hover {
|
|
|
|
|
animation-play-state: paused;
|
|
|
|
|
}
|