猿问

无法实现无限滚动,求教!!!!!

<script type="text/javascript">

window.onload=function(){

var opre=document.getElementById('pre');

var onext=document.getElementById('next');

var obox=document.getElementById('box');

function animate(buc){

var speed=parseInt(obox.style.left)+buc;

obox.style.left=speed+'px';

if(speed<-3000){

obox.style.left= -600+'px';

}

if(speed>0){

obox.style.left=-3000+'px';

}

}

opre.onclick=function(){

animate(-600)

}

onext.onclick=function(){

animate(600)

}


}


</script>


慕粉18627760491
浏览 1328回答 1
1回答
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答