放飞自我 LET DREAMS FLY

禁止蒙层底部页面跟随滚动

 1 let bodyEl = document.body
 2 let top = 0
 3 
 4 function stopBodyScroll (isFixed) {
 5   if (isFixed) {
 6     top = window.scrollY
 7 
 8     bodyEl.style.position = 'fixed'
 9     bodyEl.style.top = -top + 'px'
10   } else {
11     bodyEl.style.position = ''
12     bodyEl.style.top = ''
13 
14     window.scrollTo(0, top) // 回到原先的top
15   }
16 }

 

posted on 2019-04-29 15:18  niuben  阅读(373)  评论(0编辑  收藏  举报

导航