How to disable scrolling temporarily?

前端 未结 30 2465
萌比男神i
萌比男神i 2020-11-21 05:16

I\'m using the scrollTo jQuery plugin and would like to know if it is somehow possible to temporarily disable scrolling on the window element through Javascript? The reason

30条回答
  •  粉色の甜心
    2020-11-21 05:33

    I have the same problem, below is the way I handle it.

    /* file.js */
    var body = document.getElementsByTagName('body')[0];
    //if window dont scroll
    body.classList.add("no-scroll");
    //if window scroll
    body.classList.remove("no-scroll");
    
    /* file.css */
    .no-scroll{
      position: fixed;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
    }
    

    hope this help.

提交回复
热议问题