How to prevent app running in phone-gap from scrolling vertically?

后端 未结 14 1878
伪装坚强ぢ
伪装坚强ぢ 2020-12-22 17:42

I\'m trying out phone gap and I want my application to not scroll up and down when the user drags their finger across the screen. This is my code. Can anyone tell me why it\

14条回答
  •  一向
    一向 (楼主)
    2020-12-22 18:11

    Run this code when the page is loaded to disable dragging:

    document.addEventListener('touchmove', function(e) { e.preventDefault(); }, false);
    

    Here's an example with jQuery:

    $(document).ready(function() {
        document.addEventListener('touchmove', function(e) { e.preventDefault(); }, false);
    });
    

提交回复
热议问题