web-interview icon indicating copy to clipboard operation
web-interview copied to clipboard

[vue] 36. vue 弹窗后如何禁止滚动条滚动?

Open qiilee opened this issue 4 years ago • 2 comments

qiilee avatar Oct 08 '19 06:10 qiilee

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

HHQ299 avatar Mar 14 '20 06:03 HHQ299

https://github.com/willmcpo/body-scroll-lock

Rabbitzzc avatar Dec 22 '20 09:12 Rabbitzzc