移动端禁止页面滑动

骑猪看日落 2022-06-07 12:00 316阅读 0赞

var mo=function(e){e.preventDefault();};
function stop(){
document.body.style.overflow=’hidden’;
document.addEventListener(“touchmove”,mo,false);//禁止页面滑动
}
/***取消滑动限制***/
function move(){
document.body.style.overflow=’’;//出现滚动条
document.removeEventListener(“touchmove”,mo,false);
}

发表评论

表情:
评论列表 (有 0 条评论,316人围观)

还没有评论,来说两句吧...

相关阅读

    相关 移动滑动

    前言 移动端,滑动是很常见的需求。很多同学都用过[swiper.js][],本文从原理出发,实践出一个类swiper的滑动小插件[ice-skating][]。 小插件