Чтобы изменить направление анимации логотипа с левой стороны на правую, нужно поменять значения свойств from и to в анимации @keyframes slide. В вашем случае, изменение значений translateX на отрицательные значения поможет достигнуть желаемого эффекта.
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #f2f2f2;
}
@keyframes slide {
from {
transform: translateX(-100%);
}
to {
transform: translateX(0%);
}
}
.logos {
overflow: hidden;
padding: 5px 0;
background: #f2f1ed;
white-space: nowrap;
position: relative;
}
.logos:after {
position: relative;
top: 0;
width: 250px;
height: 100%;
content: "";
z-index: 2;
}
.logos-slide {
display: inline-block;
animation: 15s slide infinite linear;
}
.logos-slide img {
height: 50px;
margin: 0 1px;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #f2f2f2;
}
@keyframes slide {
from {
transform: translateX(0%);
}
to {
transform: translateX(100%);
}
}
.logos {
overflow: hidden;
padding: 5px 0;
background: #f2f1ed;
white-space: nowrap;
position: relative;
}
.logos:after {
position: relative;
top: 0;
width: 250px;
height: 100%;
content: "";
z-index: 2;
}
.logos-slide {
display: inline-block;
animation: 15s slide infinite linear;
}
.logos-slide img {
height: 50px;
margin: 0 1px;
}
надеюсь на помощь