This is the JavaScript for slide show of my website. How can I modify this, when I move the mouse pointer on to the slides and pause the slideshow?

后端 未结 0 468
迷失自我
迷失自我 2020-12-09 04:53

var counter = 1; setInterval(function(){

document.getElementById(\'radio\' + counter).checked = true;
counter++;

if(counter > 4){
    counter = 1;
}


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题