How to disable scrolling temporarily?

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

    The simplest method is:

    $("body").css("overflow", "hidden"); // Remove the scroll bar temporarily
    

    To undo it:

    $("body").css("overflow", "auto");
    

    Easy to implement, but the only downside is:

    • The page will jump a bit to the left if it is center-aligned (horizontally).

    This is due to the scroll bar being removed, and the viewport becoming a bit wider.

提交回复
热议问题