I have a parent div, which contains two other Divs and I'm looking to animate the background-image of the parent div so that it constantly scrolls along the x-axis. The image is 3840px wide and the div is 100% of the browser (1920px). Essentially the image needs to repeatedly scroll whilst not impacting upon the child elements within the parent div, is this possible?
Here is my HTML
<div id="SliderBackground">
    <div id="SliderBanner"></div>
    <div id="SliderStaticImage"></div>
</div>
Here is my CSS
#SliderBackground
{
    width:100%; /*1920px*/
    height:500px;
    background-image:url(Background.png);
    z-index:-1;
    position:absolute;
    top:90px;
}
Thankyou in advance.
