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);
}
Statement: All articles on this site, unless otherwise specified or marked, are originally published on this site. No individual or organization is allowed to copy, embezzle, collect and publish the content of this website to any website, book and other media platforms without the consent of this website. If the content of this website infringes upon the legitimate rights and interests of the original author, please contact us for handling.