Sets the primary attributes of your slideshow, from whether this is an automatic or manual slideshow, the pause between slides, to the number of cycles before the slideshow stops in automatic mode. The syntax is:
Code:
displaymode: {type:'auto|manual', pause:milliseconds, cycles:0|integer, wraparound:true|false, randomize:true|false},
The "cycles" option when set to 0 will cause the slideshow to rotate perpetually in automatic mode, while any number larger than 0 means it will stop after x cycles.
The "warparound" option when set to false will disable the user's ability in manual mode to go past the very first and last slide when clicking on the navigation links to manually view the slides.
The "randomize" option when set to true will shuffle the display order of the images, so they appear in a different order each time the page is loaded.
In the following, the slideshow will auto run and stop after 3 complete cycles. Each time the page is reloaded, the order of the images randomly changes:
Code:
displaymode: {type:'auto', pause:3000, cycles:3, wraparound:true, randomize:true},
In the following, the slideshow will be put in manual mode, with the ability to loop back to the beginning of the slideshow disabled:
Code:
displaymode: {type:'manual', pause:2000, cycles:0, wraparound:false},
In manual mode, you must define your own "prev" and "next" controls to let the user control the slideshow. See "togglerid" option below for more info.
Bookmarks