Slider do not Restart on The Last Image!
I have a problema my animation stops on the last slide and do not restart, what i have to do make it continuous? You can see it live in www.lojapontointimo.com.br
I'm using this cody:
$(function() {
$('#s1').cycle({
delay: 6000,
fx: 'scrollLeft',
timeoutFn: calculateTimeout
});
});
// timeouts per slide (in seconds)
var timeouts = [2,4,2];
function calculateTimeout(currElement, nextElement, opts, isForward) {
var index = opts.currSlide;
return timeouts[index] * 1000;
}
</script>