window.onload=function(){ ? ? nav=document.getElementById('nav'); ? ? share=document.getElementById('share'); ? ? flag=0; share.onmouseover=function(){ share.style.background='rgba(120,0,0,0.8)'; } share.onmouseout=stopFun; share.onclick=function(){ if (flag==0) { ? setInterval(play,30); ? clearInterval(play); ? flag=1;?? ? ? ? }else{?? ? ? ? ? ?setInterval(stop,30);? ? ? ? ? ?clearInterval(stop);? ? ? ? ? ?flag=0;? ? ? ? } }? ? function play(){ nav.style.left=nav.offsetLeft+10+'px'; if (nav.offsetLeft>=0) { nav.style.left=0; } }? ? function stop(){? ? ? ? nav.style.left=nav.offsetLeft-10+'px';? ? ? ? if (nav.offsetLeft<=-132) { nav.style.left=-132+'px'; } } }function stopFun(){ share.style.background='gray';}這是用來實(shí)現(xiàn)點(diǎn)擊按鈕彈出一個(gè)側(cè)框,再次點(diǎn)擊復(fù)原,但是卻復(fù)原不了
第二個(gè)定時(shí)器沒起到復(fù)原的作用 這是怎么回事?
茶涼人走
2016-05-14 18:37:38