Cycle supports loading images via ajax, which I think could smooth out
the long load issues.
A very basic impementation would be
$("#cycleDiv").load(slides.html, function(){
$(this).cycle({
timeout: 5000
});
});
where "slides.html" is the path to an html file that looks something
like:
<img src="slide1.jpg" alt="" />
<img src="slide2.jpg" alt="" />
<img src="slide3.jpg" alt="" />
This may also be helpful to you: http://malsup.com/jquery/cycle/add3.html
On Jul 14, 10:27 am, whiggins <[email protected]> wrote:
> Am using Cycle (fade) for image slideshow very happily, except for the
> big visual flap when all the photos (12 or so, but large-ish) load
> prior to cycling.
>
> I've looked for a preload solution but haven't immediately found any.
> Is this best? Is there another solution?
>
> Would be grateful for any help with this! (obviously it's safe to
> assume I know little re: js)