vue mobile end ban page scroll when the page pops up the mask layer

      bodyScroll(event) {
          event.preventDefault()
      },
      /**禁止页面滑动*/
      noSliding() {
        document.body.style.overflow = 'hidden';
        document.addEventListener('touchmove', this.bodyScroll, false);//禁止页面滑动
      },
      /**允许页面滑动*/
      sliding() {
        document.body.style.overflow = '';//出现滚动条
        document.removeEventListener('touchmove', this.bodyScroll, false);
      },

 

Published 20 original articles · won praise 0 · Views 130

Guess you like

Origin blog.csdn.net/qq_2422941992/article/details/104217505