iPad 的屏幕尺寸减去浏览器中的地址栏是多少?
浏览器分辨率是多少?我在谷歌上搜索了一段时间,但不知何故找不到它!
What is the browser resolution? I have been searching for a while on google and somehow I can't find it!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
960x768 或 704x1024
960x768 or 704x1024
下面的答案是不正确的。减去占用空间的 UI 组件后,横向尺寸为 981 x 673(或 644,具体取决于)。所以减去地址栏和状态栏后,你的真实高度是 673(或 644)。
The below answer is incorrect. The landscape size, after subtracting for UI components which take up space is 981 x 673 (or 644, depending). So your true height is 673(or 644) once you subtract the address bar and status bar.
以下是屏幕尺寸,根据我在 Photoshop 中的测量,至少适用于 Safari 中的横向布局:
屏幕高度:768px
• iOS+Safari Chrome:96px
- 状态栏(上黑):20px
- Chrome 浏览器(后退/前进按钮、地址栏等):44px
- 浏览器标签栏:32px
• 网页显示:672px
Here are the screen dimensions, as per my measurements in Photoshop, at least for landscape layouts in Safari:
Screen height: 768px
• iOS+Safari Chrome: 96px
- Status bar (top black): 20px
- Browser Chrome (Back/FWD Btns, Address Bar, etc.): 44px
- Browser Tab bar: 32px
• Web display: 672px
我正在开发一个严重依赖于这个概念的应用程序。我们支持的最小设备是 iPad mini,我使用了以下宽度和高度配置:
我测试了 iPad mini 2019、iPad mini 2021、iPad Air 2019 和 iPad Air 4。配置似乎正确,我基于 browserstack,并且相应地减去宽度和高度。
这是根据 browserstack 给出的视口进行的粗略估计。我需要按照我认为合适的方式减小宽度或高度,因为在我们的用例中,如果屏幕尺寸等于 iPad mini 或以上,我们就会显示应用程序的内容。
I am working on an application that heavily relies on this exact concept. Our smallest device supported is iPad mini and I got the following width and height configurations working:
I tested iPad mini 2019, iPad mini 2021, iPad Air 2019, and iPad Air 4. The configuration seems correct, I based it off on browserstack, and subtracted width and height accordingly.
It is a rough estimate based on the viewport given by browserstack. I needed to decrease width or height as I see fit because in our use case, we show the contents of the app if the screen's size is equal to the iPad mini or above.