>  Is there a way in the jquery.cycle plugin to set settings for
>  individual slides?
>
>  For example - set a different transition or timeout for each slide.


You can change the timeout in the 'before' callback, but changing the
transition is quite problematic.

$('#slideshow').cycle({
    before: function(currSlide, nextSlide, opts) {
        // change timeout for first slide
        var index = $(this).parent().children().index(this);
        opts.timeout = index == 0 ? 5000 : 3000;
    }
});

Reply via email to