How to disable scrolling temporarily?

前端 未结 30 2547
萌比男神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:26

    Depending on what you want to achieve with the removed scroll you could just fix the element that you want to remove scroll from (on click, or whatever other trigger you'd like to temporarily deactivate scroll)

    I was searching around for a "temp no scroll" solution and for my needs, this solved it

    make a class

    .fixed{
        position: fixed;
    }
    

    then with Jquery

    var someTrigger = $('#trigger'); //a trigger button
    var contentContainer = $('#content'); //element I want to temporarily remove scroll from
    
    contentContainer.addClass('notfixed'); //make sure that the element has the "notfixed" class
    
    //Something to trigger the fixed positioning. In this case we chose a button.
    someTrigger.on('click', function(){
    
        if(contentContainer.hasClass('notfixed')){
            contentContainer.removeClass('notfixed').addClass('fixed');
    
        }else if(contentContainer.hasClass('fixed')){
            contentContainer.removeClass('fixed').addClass('notfixed');
        };
    });
    

    I found that this was a simple enough solution that works well on all browsers, and also makes for simple use on portable devices (i.e. iPhones, tablets etc). Since the element is temporarily fixed, there is no scroll :)

    NOTE! Depending on the placement of your "contentContainer" element you might need to adjust it from the left. Which can easily be done by adding a css left value to that element when the fixed class is active

    contentContainer.css({
        'left': $(window).width() - contentContainer.width()/2 //This would result in a value that is the windows entire width minus the element we want to "center" divided by two (since it's only pushed from one side)
    });
    
    0 讨论(0)
  • 2020-11-21 05:26

    To prevent the jump, this is what I used

    export function toggleBodyScroll(disable) {
      if (!window.tempScrollTop) {
        window.tempScrollTop = window.pageYOffset; 
        // save the current position in a global variable so I can access again later
    
      }
      if (disable) {
        document.body.classList.add('disable-scroll');
        document.body.style.top = `-${window.tempScrollTop}px`;
      } else {
        document.body.classList.remove('disable-scroll');
        document.body.style.top = `0px`;
        window.scrollTo({top: window.tempScrollTop});
        window.tempScrollTop = 0;
      }
    }
    
    

    and in my css

    .disable-scroll {
      height: 100%;
      overflow: hidden;
      width: 100%;
      position: fixed;
    }
    
    
    0 讨论(0)
  • 2020-11-21 05:27

    This code will work on Chrome 56 and further (original answer doesn't work on Chrome anymore).

    Use DomUtils.enableScroll() to enable scrolling.

    Use DomUtils.disableScroll() to disable scrolling.

    class DomUtils {
      // left: 37, up: 38, right: 39, down: 40,
      // spacebar: 32, pageup: 33, pagedown: 34, end: 35, home: 36
      static keys = { 37: 1, 38: 1, 39: 1, 40: 1 };
    
      static preventDefault(e) {
        e = e || window.event;
        if (e.preventDefault) e.preventDefault();
        e.returnValue = false;
      }
    
      static preventDefaultForScrollKeys(e) {
        if (DomUtils.keys[e.keyCode]) {
          DomUtils.preventDefault(e);
          return false;
        }
      }
    
      static disableScroll() {
        document.addEventListener('wheel', DomUtils.preventDefault, {
          passive: false,
        }); // Disable scrolling in Chrome
        document.addEventListener('keydown', DomUtils.preventDefaultForScrollKeys, {
          passive: false,
        });
      }
    
      static enableScroll() {
        document.removeEventListener('wheel', DomUtils.preventDefault, {
          passive: false,
        }); // Enable scrolling in Chrome
        document.removeEventListener(
          'keydown',
          DomUtils.preventDefaultForScrollKeys,
          {
            passive: false,
          }
        ); // Enable scrolling in Chrome
      }
    }
    
    0 讨论(0)
  • 2020-11-21 05:30

    Here is my solution to stop the scroll (no jQuery). I use it to disable the scroll when the side menu appears.

    <button onClick="noscroll()" style="position:fixed; padding: 8px 16px;">Disable/Enable scroll</button>
    <script>
    var noscroll_var;
    function noscroll(){
      if(noscroll_var){
        document.getElementsByTagName("html")[0].style.overflowY = "";
        document.body.style.paddingRight = "0";
        noscroll_var = false
      }else{
        document.getElementsByTagName("html")[0].setAttribute('style', 'overflow-y: hidden !important');
        document.body.style.paddingRight = "17px";
        noscroll_var = true
      }
    }/*noscroll()*/
    </script>
    
    <!-- Just to fill the page -->
    <script>
      for(var i=0; i <= 80; i++){
        document.write(i + "<hr>")
      }
    </script>

    I put 17px of padding-right to compensate for the disappearance of the scroll bar. But this is also problematic, mostly for mobile browsers. Solved by getting the bar width according to this.

    All together in this Pen.

    0 讨论(0)
  • I know this is an old question, but I had to do something very similar, and after some time looking for an answer and trying different approaches, I ended up using a very easy solution.

    My problem was very similar, almost identical, the only difference is I didn't have to actually show the scroll bar - I just had to make sure its width would still be used, so the page's width would not change while my overlay was displayed.

    When I start sliding my overlay into the screen, I do:

    $('body').addClass('stop-scrolling').css('margin-right', 8);
    

    and after I slide my overlay off the screen I do:

    $('body').removeClass('stop-scrolling').css('margin-right', 0);
    

    IMPORTANT: this works perfectly because my overlay is positioned absolute, right: 0px when visible.

    0 讨论(0)
  • 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.

    0 讨论(0)
提交回复
热议问题