












< /code>
scss < /p>
body {
align-items: center;
justify-content: center;
}
$animationSpeed: 40s;
@keyframes scroll {
0% { transform: translateX(0); }
100% { transform: translateX(calc(-250px * 7))}
}
.slider {
height: 100px;
margin: auto;
overflow:hidden;
position: relative;
width: auto;
.slide-track {
animation: scroll $animationSpeed linear infinite;
display: flex;
width: calc(250px * 14);
}
.slide {
height: 100px;
width: 250px;
}
}
Подробнее здесь: https://stackoverflow.com/questions/759 ... -backwards
Мобильная версия