当您缩小浏览器窗口时,已经为iphone屏幕添加了一个spearte布局.... 你可以看到两个箭头...当你点击右箭头它将移动到下一个滑块....但我无法看到立方体.... 当我近距离看时,我看到一个错误......
未捕获的TypeError:无法设置未定义的属性“className”
var slider = new Swipe(document.getElementById('slider'), {
callback: function(e, pos) {
var i = bullets.length;
while (i--) {
bullets[i].className = ' ';
}
bullets[pos].className = 'on';
Uncaught TypeError: Cannot set property 'className' of undefined
}
}),