Prevent iOS safari from moving web-page window so drag event can happen

后端 未结 3 843
暗喜
暗喜 2021-02-05 16:56

I am using Pep.js for kinetic drag on multi-touch, but my drag events are not being registered because when I try to drag an object in the safari, on iOS, window the window itse

3条回答
  •  北海茫月
    2021-02-05 17:27

    I have found this solution while working with the #ionicframework

    CSS:

    html, body {
      overflow:hidden;
    }
    

    JS:

    $(window).bind(
      'touchmove',
       function(e) {
        e.preventDefault();
      }
    );
    

提交回复
热议问题