
Originally Posted by
jscheuer1
Notice also that the displaymode type is 'manual', they should both be set that way, and ideally they should both have the same pause and fadeduration. The cycles should be 0 or at least the same between the two of them. And the wraparaound should be true for both as well.
I don't see the changes to the displaymode line as recommended (see above quote) in this thread. And of course you have to add the fadeSlideShow.sync.call(this); to the oninit From what the page is/was when I looked at it, change:
Code:
var mygallery=new fadeSlideShow({
wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
dimensions: [760, 190], //width/height of gallery in pixels. Should reflect dimensions of largest image
imagearray: [
["images/slide-1.png", "", "", ""],
["images/slide-2.png", "", "", ""],
["images/slide-3.png", "", "", ""],
["images/slide-4.png", "", "", ""],
["images/slide-5.png", "", "", ""],
["images/slide-6.png", "", "", ""],
["images/slide-7.png", "", "", ""],
["images/slide-8.png", "", "", ""]
],
displaymode: {type:'auto', pause:800, cycles:1, wraparound:false, delay:1250},
persist: false, //remember last viewed slide and recall within same session?
fadeduration: 400, //transition duration (milliseconds)
descreveal: "ondemand",
togglerid: "",
oninit: function(){
--this.setting.totalsteps;
}
})
to:
Code:
var mygallery=new fadeSlideShow({
wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
dimensions: [760, 190], //width/height of gallery in pixels. Should reflect dimensions of largest image
imagearray: [
["images/slide-1.png", "", "", ""],
["images/slide-2.png", "", "", ""],
["images/slide-3.png", "", "", ""],
["images/slide-4.png", "", "", ""],
["images/slide-5.png", "", "", ""],
["images/slide-6.png", "", "", ""],
["images/slide-7.png", "", "", ""],
["images/slide-8.png", "", "", ""]
],
displaymode: {type:'manual', pause:800, cycles:1, wraparound:true, delay:1250},
persist: false, //remember last viewed slide and recall within same session?
fadeduration: 400, //transition duration (milliseconds)
descreveal: "ondemand",
togglerid: "",
oninit: function(){
--this.setting.totalsteps;
fadeSlideShow.sync.call(this);
}
})
Bookmarks