Turn a group of images into a simple slideshow with navigation.
slide
: '.slideshow-item'
speed
: 5000
random
: Startfalse
Create a slideshow with a 7 second pause between slides & start out displaying a random slide.
$('#slideshow').slideshow({ speed: 7000, randomStart: true });
Use custom selectors for slides.
$('#slideshow').slideshow('.slide', 5000);