Code:
var mygallery=new fadeSlideShow({
wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
dimensions: [100, 75], //width/height of gallery in pixels. Should reflect dimensions of largest image
imagearray: [
["images/gallery-penny/penny000.jpg"],
["images/gallery-penny/penny001.jpg"],
["images/gallery-penny/penny002.jpg"],
["images/gallery-penny/penny003.jpg"],
["images/gallery-penny/penny004.jpg"],
["images/gallery-penny/penny005.jpg"],
["images/gallery-penny/penny006.jpg"],
["images/gallery-penny/penny007.jpg"],
["images/gallery-penny/penny008.jpg"],
["images/gallery-penny/penny009.jpg"],
["images/gallery-penny/penny010.jpg"],
["images/gallery-penny/penny011.jpg"],
["images/gallery-penny/penny012.jpg"] //<--no trailing comma after very last image element!
],
displaymode: {type:'manual', pause:2000, cycles:0, wraparound:false},
persist: false, //remember last viewed slide and recall within same session?
fadeduration: 500, //transition duration (milliseconds)
descreveal: "none",
togglerid: "slideshow1toggler"
})
var mygallery1=new fadeSlideShow({
wrapperid: "fadeshow2", //ID of blank DIV on page to house Slideshow
dimensions: [100, 75], //width/height of gallery in pixels. Should reflect dimensions of largest image
imagearray: [
["images/gallery-ladycallie/lady-callie000.jpg"],
["images/gallery-ladycallie/lady-callie001.jpg"],
["images/gallery-ladycallie/lady-callie002.jpg"],
["images/gallery-ladycallie/lady-callie003.jpg"] //<--no trailing comma after very last image element!
],
displaymode: {type:'manual', pause:2000, cycles:0, wraparound:false},
persist: false, //remember last viewed slide and recall within same session?
fadeduration: 500, //transition duration (milliseconds)
descreveal: "none",
togglerid: "slideshow2toggler"
})
var mygallery2=new fadeSlideShow({
wrapperid: "fadeshow3", //ID of blank DIV on page to house Slideshow
dimensions: [100, 75], //width/height of gallery in pixels. Should reflect dimensions of largest image
imagearray: [
["images/gallery-cody-sabrina/cody-sabrina00.jpg"],
["images/gallery-cody-sabrina/cody-sabrina01.jpg"],
["images/gallery-cody-sabrina/cody-sabrina02.jpg"],
["images/gallery-cody-sabrina/cody-sabrina03.jpg"] //<--no trailing comma after very last image element!
],
displaymode: {type:'manual', pause:2000, cycles:0, wraparound:false},
persist: false, //remember last viewed slide and recall within same session?
fadeduration: 500, //transition duration (milliseconds)
descreveal: "none",
togglerid: "slideshow3toggler"
})
And then in your markup:
Bookmarks