我在我的项目中使用 iscroll。我想在用户滚动 id 时一次滚动 3 个项目,是否可以使用 iscroll 库?我已经尝试滚动到但它不起作用?
这是我的小提琴。 http://jsfiddle.net/amnishyadav/dWYJS/
var isScrolling = false;
myScroll = new iScroll('headerWrapper',{
snap: 'li',
hScrollbar: false,
vScrollbar: false,
momentum: true,
vScroll: false,
onScrollMove : function(e){
// clearHeaderInterval();
// myScroll.scrollTo(50, 0);
// myScroll.refresh();
console.log('onScrollMove===============>>>>>>>>>>>>>');
isScrolling = true;
// here get the device type and version
if(deviceType() == 'android'){
var deviceVersion = device.version;
console.log(" deviceType is ===>>"+deviceVersion);
if(deviceVersion=='4.1' || deviceVersion=='4.1.1'|| deviceVersion=='4.1.2'){
console.log("android version is ===>>"+deviceVersion);
setTimeout(function(){
myScroll.refresh();
}, 1000);
}
}
// setTimeout(function(){myScroll.refresh();},0);
},
});