hughfenghen
9/7/2017 - 8:23 AM

弹窗锁定背景代码

弹窗锁定背景代码

lockBg(newVal) {
  if (newVal) {
    document.documentElement.style.top = -document.body.scrollTop + 'px';
    document.documentElement.classList.add('lock-modal');
  } else {
    document.documentElement.classList.remove('lock-modal');
    document.body.scrollTop = -parseInt(document.getElementsByTagName('html')[0].style.top, 10);
    document.documentElement.style.top = '';
  }
},
html.lock-modal {
  overflow-y: hidden !important;
  position: fixed;
  width: 100%;
}