2013-07-19 59 views
0

我使用touchSwipe插件進行移動端滑動運動。雖然我有點麻煩。使用touchSwipe.js的SwipeRight

我可以讓左側滑動工作得很好。

$(".grid").swipe({ 
    swipeLeft:function(event, direction, distance, duration, fingerCount) { 
    alert('swipe left'); 
    } 
}); 

但由於某些奇怪的原因,我不能正確的刷卡工作,我真的沒有看到我做錯了什麼。

$(".grid").swipe({ 
    swipeRight:function(event, direction, distance, duration, fingerCount) { 
    alert('swipe right'); 
    } 
}); 

有人能幫我看看我在做什麼錯了嗎?

回答

4

嘗試設置它們都在同一時間?

$(".grid").swipe({ 
    swipeLeft:function(event, direction, distance, duration, fingerCount) { 
    alert('swipe left'); 
    }, 
    swipeRight:function(event, direction, distance, duration, fingerCount) { 
    alert('swipe right'); 
    } 
}); 

根據順序,當您設置swipeLeft時,可能會擦除swipeRight。

+0

你真棒,謝謝你解決我的頭痛! – zazvorniki

+0

爲我工作。給予好評! :) –

相關問題