OK, I think I've got that. Use this version of the featuredcontentglider.js script (right click and 'save as'):
Attachment 3320
Add a configuration option in your featuredcontentglider.init (see highlighted line):
Code:
featuredcontentglider.init({
gliderid: "canadaprovinces", //ID of main glider container
contentclass: "glidecontent", //Shared CSS class name of each glider content
togglerid: "p-select", //ID of toggler container
remotecontent: "", //Get gliding contents from external file on server? "filename" or "" to disable
selected: 0, //Default selected content index (0=1st)
persiststate: false, //Remember last content shown within browser session (true/false)?
speed: 500, //Glide animation duration (in milliseconds)
direction: "downup", //set direction of glide: "updown", "downup", "leftright", or "rightleft"
autorotate: true, //Auto rotate contents (true/false)?
pause: true, //If auto rotate, should glider pause on mouse over of contents and controls (true/false)?
autorotateconfig: [3000, 0] //if auto rotate enabled, set [milliseconds_btw_rotations, cycles_before_stopping]
})
Notice also that the autorotateconfig's second item is 0. That's for continuous auto rotation.
Bookmarks