For:
(or if need be, clicks the "Play" button.)
Just change:
Code:
. . . s/slide5d.jpg", "", "", "TA2000 Omnibus Transparency lets you determine the types of consolidated reporting you need to oversee and monitor subaccount activity within all of your omnibus distributors.", 500, 500],
["images/slide5e.jpg", "", "", "TA2000 Omnibus Transparency lets you determine the types of consolidated reporting you need to oversee and monitor subaccount activity within all of your omnibus distributors.", 500, 500],
["images/slide5f.jpg", "", "", "TA2000 Omnibus Transparency lets you determine the types of consolidated reporting you need to oversee and monitor subaccount activity within all of your omnibus distributors.", 3000, 500],
["images/slide6a.jpg", "", "", "TA2000 Omnibus Transparency lets you determine the types of consolidated reporting you need to oversee and monitor subaccount activity within all of your omnibus distributors.", 3000,500] //<--no trailing comma after very last image element!
],
displaymode: {type:'auto', pause:2500, cycles:1, wraparound:false},
persist: false, //remember last viewed slide and recall within same session?
fadeduration: 500, //transition . . .
to:
Code:
. . . s/slide5d.jpg", "", "", "TA2000 Omnibus Transparency lets you determine the types of consolidated reporting you need to oversee and monitor subaccount activity within all of your omnibus distributors.", 500, 500],
["images/slide5e.jpg", "", "", "TA2000 Omnibus Transparency lets you determine the types of consolidated reporting you need to oversee and monitor subaccount activity within all of your omnibus distributors.", 500, 500],
["images/slide5f.jpg", "", "", "TA2000 Omnibus Transparency lets you determine the types of consolidated reporting you need to oversee and monitor subaccount activity within all of your omnibus distributors.", 3000, 500],
["images/slide6a.jpg", "", "", "TA2000 Omnibus Transparency lets you determine the types of consolidated reporting you need to oversee and monitor subaccount activity within all of your omnibus distributors.", 3000,500] //<--no trailing comma after very last image element!
],
displaymode: {type:'manual', pause:2500, cycles:1, wraparound:false},
persist: false, //remember last viewed slide and recall within same session?
fadeduration: 500, //transition . . .
And if you also want clicking on the slideshow to start it, also add the highlighted as shown:
Code:
. . . }
},
togglerid: "fadeshow2toggler",
oninit: function(){
jQuery('#' + this.setting.wrapperid + ' .gallerylayer').each(function(){
jQuery(this).find('img').each(function(i){
jQuery(this).attr('usemap', '#' + (i + 1));
});
});
var s = this.setting, ss = this;
jQuery('#' + s.togglerid + ' .restart').click(function(e){
ss.navigate(0);
s.currentstep = -1;
s.displaymode.type = 'auto';
ss.showslide(0);
e.preventDefault();
});
s.$wrapperdiv.click(function(){
s.ismouseover = false;
s.$togglerdiv.find('.pauseplay').click();
s.$wrapperdiv.unbind('click'); // comment out this line to have the slideshow itself continue to act as a pause/play button.
});
this.setting.dpause = this.setting.displaymode.pause;
this.setting.dfade = this.setting.fadeduration;
},
onslide: function(c, i){
this.setting.displ . . .
Bookmarks