I have UL tag which has around 2000 images in LI tag under it. They display as a carousel. I am trying to Lazy Load them, They show a Loader gif and then show the Original Image.
<li>
<img src="http://placehold.it/350x150&text=image1" />
</li>
But it this creates a stress to the server with 2000 requests at a single time. I want to Load them sequentially as a batch. Load first 100 images and then load next 100.
The images are added directly through jquery from webservices. So if I try to "Lazy load using container", they dont work well as carousel keeps changing the images with the help of jquery.
So basically am looking to Lazy load the images as a batch.
If I have the code as shown in this fiddle link