ShilangL
2016-06-19 22:30
window.onload= function () {
var container = document.getElementById('container');
var list = document.getElementById('list');
var buttons = document.getElementById('buttons').getElementsByTagName('span');
var prev = document.getElementById('prev');
var next = document.getElementById('next');
function nextpic(offnext) {
list.style.left = parseInt(list.style.left)+offnext +'px';
if (list.style.left > -600) {
list.style.left = -3000 + 'px';
}
};
next.onclick = function () {
nextpic(-600)
// list.style.left = parseInt(list.style.left) - 600 + 'px';
};
prev.onclick = function () {
nextpic(+600)
// list.style.left = parseInt(list.style.left) + 600 + 'px';
};
// 以上为点击切换图片
};
按照老师的写 还是 无法无限滚动 求助 大神 求助 大神
if判断条件list.style.left改成parseInt(list.style.left)+offnext
焦点图轮播特效
65279 学习 · 611 问题
相似问题