Hi,

I have a following problem:

I used a Cycle Plugin configured as follows:

$('#s4').cycle({
    fx: 'custom3',
    easeOut: 'backin',
    easeIn: 'bounceout',
    after: onAfter4,
    speed: 800,
    timeout: 3,
    autostop: 1,
    autostopCount: 2,
    cssBefore: {
        top:  0,
        left: 0,
        width: 308,
        height: 0,
        zIndex: 1
    },
    animIn:  {
        width: 308,
        height: 282
    },
    animOut: {
        top:  0,
        left: 0,
        width: 308,
        height: 0
    },
    cssAfter: {
        zIndex: 0
    },
    delay: 0
});

and I don't know how to start my slideshow after it stops (due to
options: autostop and autostopCount). I know there are two opposite
arguments - 'pause' and 'resume' that allow us to control our
slideshow (for example: $('#s4').cycle('pause');). I've seen in
documentation that there is also 'stop' argument - which holds the
slideshow, but I can't find the opposite one, which starts the
slideshow. Does anyone know how to turn it back on?

Best regards.

Reply via email to