I am facing a challenge with the animation on the background image of my website. The image is constantly moving to the left, and when it reaches the end, it starts over. However, I would like the image to switch direction when it reaches the edge - going right when reaching the left side and vice versa.
var x=0;
var y=0;
var banner = $("#loading");
banner.css('backgroundPosition', x + 'px' + ' ' + y + 'px');
window.setInterval(function(){
banner.css('backgroundPosition', x + 'px' + ' ' + y + 'px');
x--;
}, 90);