网页大小不会随着浏览器窗口大小的调整而调整

发布于 2024-12-07 11:45:51 字数 201 浏览 1 评论 0原文

我正在为客户开发的一个网站遇到了一个奇怪的问题。加载页面时,页面会填充整个浏览器窗口,但如果重新调整窗口大小,页面将保持其原始尺寸并出现滚动条,有点像溢出:隐藏。我不知道为什么会发生这种情况,这是网站: http://www.anthonygonzalez.com/

A website I am developing for a client is having an odd issue. When the page is loaded, the page fills the whole browser window, but if the window is re-sized, the page stays its original dimensions with scroll-bars appearing, kind of like an overflow: hidden. I'm not sure why this is happening, here is the website: http://www.anthonygonzalez.com/

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

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

发布评论

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

评论(1

安静被遗忘 2024-12-14 11:45:51

加载页面的 body 时调用的 setStyle() 函数会根据浏览器窗口的大小静态(使用像素)设置宽度等< em>当页面加载时。当窗口大小更改时,它似乎不会更新这些值。 您需要

  1. 执行此操作时,
  2. 使用百分比而不是像素,或者在调整浏览器大小时调用相同的函数,以根据新的窗口大小重新计算这些值。

如果这没有帮助,或者我错过了什么,请告诉我。

Your setStyle() function that's called when the body of your page loads is setting up the width, etc. statically (using pixels) based on the size of the browser window when the page is loaded. It doesn't appear to be updating those values when the window changes size. You either need to

  1. Use percentages instead of pixels when you do this or,
  2. Call that same function whenever the browser is resized to re-calculate those values based on the new window size.

Let me know if that doesn't help, or if I've missed something.

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