OSX 10.7 $(window).width() 返回错误的值

发布于 2024-11-28 17:15:55 字数 649 浏览 0 评论 0原文

我不是第一个注意到这一点的人,但自从 10.7 发布以来,他们实现了新样式的滚动条 $(window).width() 和 $(window).height() 不再正确返回浏览器的大小windows viewport ....

假设您想在加载时设置一个与浏览器窗口大小相同的div...

// load jquery //
    
<div id="bob">
</div>
    
    <script>
      $('#bob').width($(window).width()).height($(window).height());
    </script>

最终发生的事情是这样的 在此处输入图像描述

对此我问WTF

这是问题的示例

http://lab .aerotwist.com/webgl/a3/vertex-manipulation/

I can't be the first to notice this but ever since 10.7 came out and they implemented the new style of scrollbars $(window).width() and $(window).height() no longer correctly return the size of the browser windows viewport....

Lets say you want to set a div the size of the browser window on load eh...

// load jquery //
    
<div id="bob">
</div>
    
    <script>
      $('#bob').width($(window).width()).height($(window).height());
    </script>

and what ends up happening is something like this
enter image description here

To this I ask WTF?

here is an example of the issue

http://lab.aerotwist.com/webgl/a3/vertex-manipulation/

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

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

发布评论

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

评论(1

零度° 2024-12-05 17:15:55

包含 #bob 的元素是否有边距或填充?如果这样做,可能会在 #bob 的宽度和高度之外添加更多空间,从而强制出现滚动条。

如果这是问题所在,您可以通过添加 CSS 来解决该问题,如下所示:

html, body, #bob {
    margin: 0;
    padding: 0;
}

Do the elements containing #bob have margin or padding? If they do, that could be adding more space beyond the width and height of #bob, forcing scrollbars to appear.

If that's the problem, you could fix that by adding CSS like this:

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