You want to delay the start of the slideshow for 1 minute? If so, on the page replace:
Code:
<script type="text/javascript">
var mygallery=new fadeSlideShow({
wrapperid: "fadeshow1",
dimensions: [1280, 1024],
imagearray: [
["img/1.jpg"],
["img/2.jpg"],
["img/3.jpg"],
],
displaymode: {type:'auto', pause:2500, cycles:0, wraparound:false},
persist: false,
fadeduration: 500,
descreveal: "ondemand",
togglerid: ""
})
</script>
with:
Code:
<script type="text/javascript">
setTimeout(function(){
var mygallery=new fadeSlideShow({
wrapperid: "fadeshow1",
dimensions: [1280, 1024],
imagearray: [
["img/1.jpg"],
["img/2.jpg"],
["img/3.jpg"],
],
displaymode: {type:'auto', pause:2500, cycles:0, wraparound:false},
persist: false,
fadeduration: 500,
descreveal: "ondemand",
togglerid: ""
});
}, 60000);
</script>
Bookmarks