Is it possible to create a never-ending vertical image scrolling effect as the user scrolls down?
I am aware of how to repeat an image horizontally or vertically, however, I want the image to continuously repeat as the user continues to scroll down the page.
If possible, I would like to achieve this using CSS or HTML.
Here is what I have so far, but I need help figuring out how to make the div infinitely carry on:
CSS:
.slide {
width:30px;
height:1000px;
background-image:url(http://paulbourke.net/fractals/noise/noise2d.gif);
background-repeat:repeat-y;
margin:0 auto;
}
HTML:
<div class="slide"></div>