I have defined two slideshow by JQuery cycle below:
$('#slideShow').cycle({
fx: 'fade',
timeout: 3000,
speed: 2000,
random: 1
});
$('#slideText').cycle({
fx: 'blindZ',
timeout: 3000,
speed: 2000,
random: 1
});
I have validated manually and they are in sync. Actually is that just luck or I need to define something like below to ensure they are in sync:
- set timeout parameter as 0 in cycle to ensure it will not auto update.
- use setInterval function with same interval to trigger each cycle.
Thanks for your kind assistance.