不需要时显示浏览器水平滚动条

发布于 2024-11-16 11:13:58 字数 248 浏览 0 评论 0原文

示例链接:(链接已删除,谢谢大家)

当页面首次加载时,我们会在浏览器底部看到一个水平滚动条。该滚动条停留约 2-5 秒然后消失。

我当前的分辨率不需要它,所以我不明白为什么它会出现。

这种情况发生在 Firefox 4、Internet Explorer 7 和 Internet Explorer 7 中。 8 这不会发生在 Google Chrome 或 Safarie 中。

有什么想法吗?

谢谢

Example link: (LINK REMOVED SOLVED THANKS GUYS)

When the page is first loading we see a horizontal scroll bar at the bottom of the browser. this scroller bar stays for like 2-5 seconds and disapears.

There is no need for it on my current resolution so i dont see why it is showing up.

This occurs in Firefox 4, Internet explorer 7 & 8
This DOESNT happen in Google Chrome or Safarie.

Any ideas?

Thanks

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

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

发布评论

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

评论(4

苏璃陌 2024-11-23 11:13:58

该问题是由页面上的某些 Javascript 引起的。如果禁用 JS,您会发现问题不会发生。

很难准确判断是哪个部分导致了问题,因为它很快就会自行恢复。我的猜测是,标题为“Événements à venir”的文本滚动条导致了问题。

The problem is being caused by some Javascript on the page. If you disable JS you'll notice that the problem doesn't occur.

It's hard to tell exactly which bit is causing the problem since it rights itself quite quickly. My guess is that it's the text-scroller with the title "Événements à venir" that's causing the issue.

昇り龍 2024-11-23 11:13:58

我认为以下内容应该对您有帮助:

    html, body { overflow: hidden; }

这是放置在 CSS 中的。

I think the following should help you:

    html, body { overflow: hidden; }

This is placed in the CSS.

感受沵的脚步 2024-11-23 11:13:58

这是 JS 的问题。您可以使用

html, body {overflow-x: hidden;}

并确保在调整大小到小于最小宽度时显示滚动条。

$(window).resize(function(){
  if($(window).width() < (your_container_width or fixed width that you define) )
    $(html).css("overflow-x","scroll");
    $(body).css("overflow-x","scroll");
});

It is the problem with JS.. You could use

html, body {overflow-x: hidden;}

and make sure you display the scrollbar when you resize to something less than min-width.

$(window).resize(function(){
  if($(window).width() < (your_container_width or fixed width that you define) )
    $(html).css("overflow-x","scroll");
    $(body).css("overflow-x","scroll");
});
↘紸啶 2024-11-23 11:13:58

你可以简单地使用css3

overflow-x: hidden

You can simply use css3

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