maxzhang / touchbox

移动端单页视图库,适用于制作移动Web
112 stars 50 forks source link

怎么设置 touchbox 只能向上推, 不要往下拉! #1

Open raymondZhong opened 9 years ago

raymondZhong commented 9 years ago

怎么设置 touchbox 只能向上推, 不要往下拉!

maxzhang commented 9 years ago

更新1.0.6版,写成下面这样:

var boxer = new TouchBox('#touchBoxCt', {
    loop: true,
    animation: 'slide'
});
boxer.on('touchmove', function(activeIndex, offsetY) {
    console.log('touchmove, ', 'current index:', activeIndex, ' offsetY:', offsetY);
    return offsetY > 0;
});
boxer.on('touchend', function(activeIndex, offsetY) {
    console.log('touchend, ', 'current index:', activeIndex, ' offsetY:', offsetY);
    return offsetY > 0;
});