I am using rcarousel and would like to change the time that it stays on each slide. Right now it stays for a couple of seconds but I would like to increase this so the slide is displayed for at least 10 seconds.
Is this possible? Reading the documentation on jQuery rcarousel I couldn't see any setting that does this.
I've tried the following:
HTML
<!-- language: lang-html --><div id="carousel">
<img src="http://i.imgur.com/kCURPp5.png" />
<img src="http://i.imgur.com/kCURPp5.png" />
<img src="http://i.imgur.com/kCURPp5.png" />
<img src="http://i.imgur.com/kCURPp5.png" />
<img src="http://i.imgur.com/kCURPp5.png" />
<img src="http://i.imgur.com/kCURPp5.png" />
</div>
With the following JavaScript
<!-- language: lang-js -->$(function () {
$("#carousel").rcarousel({
speed: 5000
});
});
But this changes the transition speed. I want to change the length of time for pausing between images.
See this fiddle