Thanks for your response!

I have the photos placed within a div (#photoshow) on the html page
itself - I'm curious to know how might your code be altered to preload
them in this situation?

Unfortunately I had no success with the script as mentioned on
the ...cycle/add3.html page. What has worked is a CSS rule of
display:none for all the imgs except the first, to which I gave a
class of "first" and a CSS rule of display:block so there is something
to see while Cycle loads up.

Propped up for now, but working. I appreciate your help!



On Jul 14, 1:22 pm, amuhlou <amysch...@gmail.com> wrote:
> Cyclesupports 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 <whiggin...@gmail.com> wrote:
>
> > Am usingCycle(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 apreloadsolution 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)

Reply via email to