//等待2s 出现弹窗
setTimeout(function () {
$("#mask").attr("style","display:block");
//开启弹窗,禁止用户拖页面
var preMove=function(e){passive: false ;};
document.body.style.overflow='hidden';
document.addEventListener("touchmove",preMove,false);//禁止页面滑动
}, 2000);
//关闭弹窗
$(".close").click(function(){
$("#mask").attr("style","display:none");
//关闭弹窗,开启用户拖页面
var preMove=function(e){passive: false };
document.body.style.overflow='';//出现滚动条
document.removeEventListener("touchmove",preMove,false);
});
h5页面禁止用户拖动
于 2021-06-22 11:44:26 首次发布