var prev = document.getElementById('prev');
var next = document.getElementById('next');
var index = 1;
function showButton() {
for (var i = 0;i<buttons.length;i++){
if (buttons[i].ClassName=='on') {
buttons[i].ClassName=='';
}
}
buttons.[index - 1].ClassName='on';
}
function animate(offset){
list.style.left = parseInt(list.style.left)+offset+'px';
}
next.onclick = function(){
animate(-300);
index =index+1;
showButton();
}
prev.onclick = function(){
animate(300);
index =index-1;
showButton();
}
}
为什么我这样写之后不能向左向右移动了,小圆点也不能亮起来
我只是将图片的大小变为了300,其他几乎没变
贴完整全部的,然后说明哪里有不同,或者完全没有更改?