I'm using jQuery Cycle on a project. You can see my script at pastebin.
Basically, there are three different sliders tied to the same directional controls. I'd like their transitions to be synchronized.
As it stands, since there are three separate slider instances here, they start out synchronized, but eventually fall out of sync — sometimes immediately, if you leave the browser window or something. This causes the sequences to go out of order and generally looks off. I'd like for all the sliders to fire at the exact same time, preferably linked to the .sliderImages
slides.
I've tried creating a function that contains the other two sliders and putting that in the before
option on the .sliderImages
slider, but that makes it go all wonky and I don't know enough JS to be able to troubleshoot.
As usual, any help is appreciated.
Thanks!
timeout: 0
and addingsetInterval("$('.slides').cycle('next')", 3000);
seems to sync the animations, but it interferes with the previous/next slide navigation. - bigsweater.hero
area. Instead of simply resuming the slideshow, it seems like it doubles the speed on every other slide, or something along those lines. I'm sure I'm simply misunderstanding the javascript SetInterval functionality somehow; any help appreciated. I tried this but couldn't get it to work. - bigsweater