You can make it go in waves:
let x = 0; function move() { const el = document.getElementById("content"); el.style.paddingLeft = x + "px"; x += 0.01; } setInterval(move, 10)
You can make it go in waves: