.loop-element{animation:my-loop 10s linear infinite}
@keyframes my-loop {
0%{transform:translateX(0)}
100%{transform:translateX(-100%)}
}