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

后端 未结 14 1932
伪装坚强ぢ
伪装坚强ぢ 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 17:58

    At first what you have to do is you should add the event listener in body unload method.

    simply put this line in the touch move method.

    it won't scroll document.addEventListener("touchstart/touchmove/touchend"). Any one of these 3.

    function touchMove (event e) {
        e.preventDefault;
    }
    

提交回复
热议问题