iPhone和Android横屏时如何限制网页缩放拉伸?

发布于 2024-11-02 03:26:45 字数 128 浏览 1 评论 0原文

iPhone和Android横屏时如何限制网页缩放拉伸?

当我将 iPhone 旋转为横向时,标题会占用屏幕上 30% 的空间,但在纵向模式下,它只占用 15%。

我是否需要为横向的某些元素编写不同的 css?

How to restrict zoom of webpage to stretch when iPhone and Android in landscape orientation?

When I rotate the iphone into landscape orientation, the header takes 30% space on the screen but in Portrait mode it only takes 15 %.

Will I have to write different css for some elements in landscape orientation?

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

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

发布评论

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

评论(2

扛起拖把扫天下 2024-11-09 03:26:45

您可以使用视口元标记,如 Mozilla 所描述用于开发 iPad 网页内容的 Apple 文档 描述了这个标签也很好看。 Apple 建议:

<meta name="viewport" content="width=device-width" />

编辑:

根据您的情况,您可以尝试以下操作:

<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=0, width=device-width;">

您可以尝试使用 这里提到的技术,针对不同的方向使用不同的样式表。

You can use the viewport meta tag, as described by Mozilla. The Apple Documentation for developing web content for iPad describes this tag quite nicely too. Apple recommends:

<meta name="viewport" content="width=device-width" />

EDIT:

In your case, you can try this:

<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=0, width=device-width;">

You can try to use the technique mentioned here, to use different stylesheets for different orientations.

彼岸花ソ最美的依靠 2024-11-09 03:26:45

尝试添加 webkit css

body {
    -webkit-text-size-adjust:none;
}

当您进入横向模式时,它基本上会停止调整字体大小。

请小心使用,因为如果您让桌面 safari 客户端读取此 css,那么它将阻止任何用户缩放尝试影响字体大小。

Try adding the webkit css

body {
    -webkit-text-size-adjust:none;
}

It basically stops the font size being adjusted when you go in to landscape.

Use with care, because if you let this css be read by a desktop safari client then it'll block any user zooming attempt from affecting font sizes.

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