最新回答 / 木子三水
针对你上面代码的片段,问题1:CSS代码没有代入。问题二:<div id="container">缺少结束的</div>。问题三:没有<body>。希望对你有帮助。
2016-12-16
已采纳回答 / 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