<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>
添加回答
举报
0/150
提交
取消