美文网首页
js 移动端 禁止/允许 页面滑动

js 移动端 禁止/允许 页面滑动

作者: lovelydong | 来源:发表于2020-12-17 16:00 被阅读0次
//禁止页面滑动
stop(){
      var preMove=function(e){passive: false ;};
      document.body.style.overflow='hidden';
      document.addEventListener("touchmove",preMove,false);//禁止页面滑动
  },
//允许页面滑动
move(){
      var preMove=function(e){passive: false };
      document.body.style.overflow='';//出现滚动条
      document.removeEventListener("touchmove",preMove,false);
},

相关文章

网友评论

      本文标题:js 移动端 禁止/允许 页面滑动

      本文链接:https://www.haomeiwen.com/subject/hmuzgktx.html