在 jQuery 中禁用窗口滚动

发布于 2024-10-29 02:26:38 字数 197 浏览 1 评论 0原文

我正在使用诸如 facebox 之类的东西,并且希望禁用主窗口滚动条。 但有一点需要注意的是,facebox 组件内部有一个滚动条,它需要能够滚动。

我试图修复的是以下情况:

当滚动内部滚动元素(在facebox内部)时,当滚动结束时,它会进一步向下滚动页面。

I am using something like facebox, and want the main window scrolling bar to be disabled.
One catch though, There is a scroll bar inside the facebox component, which needs to be able to scroll.

What I am trying to fix is the following case:

when scrolling the internal scrolling element (inside facebox), when scroll ends, it scrolls the page down further.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

若有似无的小暗淡 2024-11-05 02:26:38

在 css 中执行此操作:

body {
   overflow: hidden;
}

这将隐藏主窗口中的滚动条

do it in css:

body {
   overflow: hidden;
}

this would hide the scrollbar in the main window

南…巷孤猫 2024-11-05 02:26:38

我进入facebox.js文件并

  $('body').css('overflow', 'hidden');

添加

loading: function() {
      init()
      if ($('#facebox .loading').length == 1) return true
      showOverlay()
      $('#facebox .content').empty()
$('body').css('overflow', 'hidden');
      $('#facebox .body').children().hide().end().
        append('<div class="loading"><img src="'+$.facebox.settings.loadingImage+'"/></div>')

$('body').css('overflow', '');到文档末尾

   * Bindings
   */

  $(document).bind('close.facebox', function() {
    $(document).unbind('keydown.facebox')
    $('#facebox').fadeOut(function() {
      $('#facebox .content').removeClass().addClass('content')
      $('#facebox .loading').remove()
      $(document).trigger('afterClose.facebox')
$('body').css('overflow', '');
    })
    hideOverlay()
  })

})(jQuery);

这会在打开时停止滚动,关闭时将滚动放回原处,它对我有用 http://www.vestedutility.com.au/home_electrical_saftey_check.php

i went into the facebox.js file and added

  $('body').css('overflow', 'hidden');

to

loading: function() {
      init()
      if ($('#facebox .loading').length == 1) return true
      showOverlay()
      $('#facebox .content').empty()
$('body').css('overflow', 'hidden');
      $('#facebox .body').children().hide().end().
        append('<div class="loading"><img src="'+$.facebox.settings.loadingImage+'"/></div>')

and added $('body').css('overflow', ''); to the end of the document

   * Bindings
   */

  $(document).bind('close.facebox', function() {
    $(document).unbind('keydown.facebox')
    $('#facebox').fadeOut(function() {
      $('#facebox .content').removeClass().addClass('content')
      $('#facebox .loading').remove()
      $(document).trigger('afterClose.facebox')
$('body').css('overflow', '');
    })
    hideOverlay()
  })

})(jQuery);

This stops the scroll when open and when closed put the scroll back in, it worked for me at http://www.vestedutility.com.au/home_electrical_saftey_check.php

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文