I have a banner with a grid featuring 8 slideshows that I would like to run in succession.
I've got everything working, but for some reason there is a long delay before the first transition starts that I can not figure out.
Here's what i've tried thus far
$(document).ready(function(){
var $banner = $('.banner');
var sets = [".r1-c1", ".r2-c4", ".r1-c6", ".r2-c2", ".r1-c5", ".r1-c3", ".r2-c6", ".r2-c1"];
for(var i = 0; i < sets.length; i++){
$banner.find(sets[i]).cycle({
'delay' : 1000 * i,
'speed' : '1000',
'timeout' : '7000'
})
}
});
Thanks for any help,