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();
});
我想提醒在用戶被滾動的方向。我怎樣才能做到這一點?
在此先感謝!
非常有用的插件!謝謝 – 2012-04-05 07:12:30