神秘垂直滚动条出现

发布于 2024-12-22 23:59:57 字数 1054 浏览 0 评论 0原文

我目前正在开发一个网站,其 URL 为 http://lathamcity.com/

令我困惑的问题是当显示一些(但不是全部)新项目时,尽管没有内容离开页面,但会出现垂直滚动条。它不仅让我感到困扰,因为它很神秘,而且看起来不专业,并且将标题中的文本移动了微小但明显的一点。

如果单击“开发中”或第二个菜单中迄今为止可用的任何选项(所有选项都会显示相同的 div),则效果可见。

选择第一个菜单中的项目时的 jQuery 代码如下:

var headerHeight = $('#headerTable').height();
$('#selectStart').offset({left: 0, top: headerHeight});
var select1Width = $('#selectStart').width();
var select2Width = select1Width + $('.selector2').width();
$('table.selector2').offset({left: select1Width, top: headerHeight});
$('table.selector2').hide();
$('td.selector1').click(function() {
    $('td.selector2').css({'background-color': '#3B3133'});
    $('table.selector2').hide();
    $('div.pane').hide();
    var choice = '#' + $(this).attr('data-choice');
    $(choice).show();
    $(choice).offset({left: select1Width, top: headerHeight});
    $('td.selector1').css({'background-color': '#3B3133'});
    $(this).css({'background-color': '#61434A'});
});

有什么想法吗?

I am currently working on a website, whose URL is http://lathamcity.com/

The problem that is befuddling me is that when some, but not all, new items are shown, a vertical scrollbar appears, despite there being no content going off the page. Not only is it bothering me because it is mysterious, but it also looks unprofessional and shifts the text in the header a tiny but noticeable bit.

The effect is visible if one clicks "In Development" or any option in the second menus so far available (all options bring up the same div).

The jQuery code for when an item in the first menu is selected is as follows:

var headerHeight = $('#headerTable').height();
$('#selectStart').offset({left: 0, top: headerHeight});
var select1Width = $('#selectStart').width();
var select2Width = select1Width + $('.selector2').width();
$('table.selector2').offset({left: select1Width, top: headerHeight});
$('table.selector2').hide();
$('td.selector1').click(function() {
    $('td.selector2').css({'background-color': '#3B3133'});
    $('table.selector2').hide();
    $('div.pane').hide();
    var choice = '#' + $(this).attr('data-choice');
    $(choice).show();
    $(choice).offset({left: select1Width, top: headerHeight});
    $('td.selector1').css({'background-color': '#3B3133'});
    $(this).css({'background-color': '#61434A'});
});

Any ideas?

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

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

发布评论

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

评论(3

幸福%小乖 2024-12-29 23:59:57

这是因为您不了解 position 的工作原理。

为了解释发生了什么,尝试删除 position:relative;,您将看到第三级子菜单如何位于浏览器窗口下方,从而导致滚动条出现。当你改变topleft时,它是相对改变的。

这也是为什么正如 maxisam 建议的那样,放置 position:absolute; 修复它。

当然解决方法有很多种,但现在你知道原因了。

我建议您在这个页面上学习一些有关 CSS 定位的快速课程:通过十个步骤学习 CSS 定位

This is because you do not understand how position works.

To explain what happened, try removing position: relative; and you will see how the 3rd-level submenu will be below the browser window, hence causing the scrollbar to appear. When you changed the top and left, it is changed relatively.

That is also why as maxisam suggested, putting position: absolute; fixes it.

There are of course many ways to solve it, but now you know the reason.

I suggest this page for some quick lessons on CSS positioning: Learn CSS Positioning in Ten Steps

十年不长 2024-12-29 23:59:57

页面上的某个元素(单击时显示的)溢出。添加此 CSS 规则,滚动条将不再出现:

html { overflow:hidden;}

解决该问题的另一种方法是找到有问题的元素并确保它们不会溢出父容器的边界。

One of the elements on the page (that you show on click) is overflowing. Add this CSS rule and the scroll bars will no longer appear:

html { overflow:hidden;}

Another way to fix the problem would be to find the offending elements and ensure they don't overflow the bounds of the parent container.

誰認得朕 2024-12-29 23:59:57

我认为您应该使用 position:absolute; 作为单击后弹出的子菜单。

I think you should use position: absolute; for the sub menus that will pop up after click.

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