As long as you start your two slide shows one by one, that should be fine. Since they have the same timeouts and run together, they must remain in sync.
Otherwise, you can do something like this:
$('#slideShow').cycle({
fx: 'fade',
timeout: 3000,
speed: 2000,
random: 1,
after: function(currSlideElement, nextSlideElement, options, forwardFlag) {
$('#slideText').cycle('next');
}
});
$('#slideText').cycle({
fx: 'blindZ',
timeout: 0,
speed: 2000,
random: 1
});
The second slide show is deactivated, and the first sends the next command after each change.
krtek source
share