views:

302

answers:

2

as we know that in jquery / Ajax we have lot of slide show projects, but i am looking for fast slide show of images specially for slow internet connections,

most of the scripts load all the image on page load which make it slow.

one idea may be it load one or two images at a time then load next two images once page is loaded and continue until load all.

any idea ?

Thanks

A: 

Please consider using Lazy Load plugin for JQuery.
Lazy Load plugin homepage

TomaszO
+1  A: 

jQuery Cycle allows you to dynamically add slides to a slideshow.

There is a demo which features preloading additional images for an existing slideshow, then dynamically adding them through a callback. The slideshow is initially displayed with only two images.

This would seem to fit your requirements?

Alex Osborn