美文网首页
vue页面滚动

vue页面滚动

作者: 天才ok酱 | 来源:发表于2020-05-06 14:57 被阅读0次
    //停止页面滚动
    stopMove(){
      let m = function(e){e.preventDefault();};
      document.body.style.overflow='hidden';
      document.addEventListener("touchmove",m,{ passive:false });//禁止页面滑动
    }
    //开启页面滚动
    Move(){
      let m =function(e){e.preventDefault();};
      document.body.style.overflow='';//出现滚动条
      document.removeEventListener("touchmove",m,{ passive:true });
    }

相关文章

网友评论

      本文标题:vue页面滚动

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