touchbox icon indicating copy to clipboard operation
touchbox copied to clipboard

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

Open raymondZhong opened this issue 10 years ago • 1 comments

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

raymondZhong avatar Dec 10 '14 00:12 raymondZhong

更新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;
});

maxzhang avatar Dec 10 '14 10:12 maxzhang