To get it to kick in faster, optimize your images in the show, even any other images on the page, this will reduce load time.
It is possible as well to superimpose an image and/or other content over the show and to dismiss that once the show has initialized. You would need to have a basic to intermediate knowledge of HTML and css style to palce content over the show. To dismiss it on init, add this code (highlighted) to the show's definition (don't miss the added comma after togglerid: ""):
Code:
. . . s/main_homepage1.gif", "http://www.mydomain.com/c-440-lighting-electrical.aspx","_self", "Reading Message Number 3"] //<--no trailing comma after very last image element!
],
displaymode: {type:'auto', pause:2500, cycles:0, wraparound:false},
persist: false, //remember last viewed slide and recall within same session?
fadeduration: 500, //transition duration (milliseconds)
descreveal: "ondemand",
togglerid: "",
oninit: function(){jQuery('#cover').css('display', 'none');}
})
where 'cover' would be a unique id for the element covering the show prior to initialization. If you need help constructing and positioning such an element, let me know.
Bookmarks