For this Dream Weaving Atlas The function of automatic playback of pictures on the content page can be modified in the following way to remove the automatic playback of pictures.

The method is as follows:

Method 1: How to extend the playback time

Open the/samples/default/article_image.htm file

find

function dStartPlay()
{
if(npage!=totalpage) {
gtimer = setTimeout("dPlayNext()",10000);
}
}

Change 10000 to larger, such as 200000, or comment out dStartPlay() directly with/* */.

Method 2: Delete the auto play function

Open the/samples/default/article_image.htm file

Delete the following code

//Stop Slide
function dStopPlay(){
if(gtimer) clearTimeout(gtimer);
else dPlayNext();
}
//Start Slide
function dStartPlay(){
if(npage!=totalpage){
gtimer = setTimeout("dPlayNext()",10000);
}

Post reply

Can't comment until