移动端点击弹出模态框禁止页面滑动

2018-12-17  本文已影响0人  BugMyGod
/***禁止滑动***/
stop() {
    document.documentElement.style.position = 'fixed';
    document.body.style.overflow = 'hidden'; //隐藏滚动条
},
/***取消滑动限制***/
move() {
    document.documentElement.style.position = 'static';
    document.body.style.overflow = ''; //出现滚动条
}
上一篇 下一篇

猜你喜欢

热点阅读