如何获得最大可能的客户端宽度
网页应该适应用户可以拥有的浏览器窗口的最大可能尺寸。
有没有办法获得浏览器视口的最大可能大小?
我觉得这并不那么简单,因为用户可以在浏览器中显示或隐藏一些工具栏,这会影响视口大小。
这可能吗?
Web page should adapt be adapted to maximal possible size of browser's window, that user can have.
Is there a way to get maximal possible size of browser's viewport ?
I feel, that it's not so simple, as might be, because user can show or hide some toolbars in browser, that will affect the viewport size.
Is this even possible ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
function getWidth()
{
var pagewidth=document.body.clientWidth;
// Whatever you want to do with it.
}
灵魂会这样做。
function getWidth()
{
var pagewidth=document.body.clientWidth;
// Whatever you want to do with it.
}
Sould do it.
为什么在 CSS 设计时不使用流体布局呢?阅读相关内容。
使用百分比设置 DOM 元素的尺寸将帮助您实现这一目标。它会根据客户端浏览器的大小自动缩放。
Why don't you use a fluid layout while designing in css. Read about it.
Setting dimensions of DOM elements using percentages will help you achieve this. It will scale automatically according to the client browser size.