2012-04-04 50 views
0

我有以下情形:獲取的方向(上/下),其中用戶是在iPad(touchmove事件)滾動

我有個碼,綁定到鼠標滾輪事件

$('#main').bind("mousewheel",function(ev, delta) { 
    ev.preventDefault(); 
    if(delta == '-1') { 
     alert("The user is trying to scroll upwards"); 
    } else { 
     alert("The user is trying to scroll down"); 
    } 
}); 

然後我包含這個Plugin,它提供了使用Iphone/Ipad觸摸事件。
請看下面的代碼:

$('#main').bind('touchmove', function(event) { 
    ev.preventDefault(); 
}); 

我想提醒在用戶被滾動的方向。我怎樣才能做到這一點?

在此先感謝!

回答

2

嘗試使用這個真棒圖書館。

jQuery('#swipe').bind('swipeup',eventHandler); 
jQuery('#swipe').bind('swipedown',eventHandler); 

更多信息:http://jgestures.codeplex.com/

+0

非常有用的插件!謝謝 – 2012-04-05 07:12:30

相關問題