已采纳回答 / Pokeman
<...code...>我是这样写的,不过点击事件函数里面index+=1和index-=1应该放在showButton();前面,如下next.onclick=function(){ animate(-720); index+=1; showButton(); } prev.onclick=function(){ animate(720); index-=1; showButton(); }
2016-12-09
已采纳回答 / 未知电阻Rx
<div id="list" style="left:-600"> 少加了px <div id="list" style="left:-600px"> 这才是正确的
2016-12-09
已采纳回答 / 慕数据5775487
这里改一下就好了function Smove(a){ var newL=list.offsetLeft+a; list.style.left=newL+'px' if (newL<-3000) { list.style.left=-600+'px'; } else if(newL>-600){ list.style.left=-3000+'px'; ...
2016-12-07
已采纳回答 / rainy_li3676598
对, 因为你的img都是在List这个div里面,所以只需要对这个DIV进行移动。 这样DIV里面的整体就会一起移动。 如果是让图片平移, 那么你要对每一个图片都要进行处理,复杂程度大大增加。。
2016-12-05
最新回答 / rainy_li3676598
如果你写stop(); 表示的是立即执行,不管你前面的条件有没有被触发, 你可以写成 function () { stop();}用stop, 类似指针,指向的是stop();这个函数, 而如果你把函数名写全了, 就变成了立即执行,你可以写一个alert实验一下。
2016-12-04