iPhone/Safari:有没有办法在加载时停止调整页面大小?

发布于 2024-07-16 11:11:42 字数 165 浏览 4 评论 0原文

这是一个不太可能的事情,但我希望有一种方法可以阻止 iPhone 在加载时调整页面大小。 问题是,如果它是一个需要大量刷新的网站(例如论坛),那么用户每次刷新都必须调整该页面的大小,就会变得有点旧。

有没有办法强制 Safari/IPhone 在不涉及用户更改设置的情况下刷新时不最小化站点?

This is a long shot but I'm hoping there's a way to stop IPhones from resizing a page on load. Problem is if it's a site with a lot of need for refreshing (Say a forum) it gets a little old for users to have to resize that page every refresh.

Is there a way to force Safari/The IPhnone to not minimize the site on refresh that doesn't involve a user changing a setting?

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

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

发布评论

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

评论(1

回眸一遍 2024-07-23 11:11:42

您可以使用一个元标记来限制 iPhone 的视口:

<meta name="viewport" content="width=320" />

来自 Apple 的开发人员文档:

使用 viewport 元标记可以改善 Web 内容在 iPhone 上的呈现方式。 通常,您使用视口元标记来设置视口的宽度和初始比例。 例如,如果您的网页窄于 980 像素,那么您应该设置视口的宽度以适合您的网页内容。 如果您正在设计 iPhone 特定的 Web 应用程序,请将宽度设置为设备的宽度。

您可以使用一个常量来表示 iPhone 的设备宽度:width=device-width

不确定此链接是否有效,但您可以在 Apple 开发者网站

There is a meta tag you can use that will constrain the viewport for the iPhone:

<meta name="viewport" content="width=320" />

From Apple's developer documentation:

Use the viewport meta tag to improve the presentation of your web content on iPhone. Typically, you use the viewport meta tag to set the width and initial scale of the viewport. For example, if your webpage is narrower than 980 pixels, then you should set the width of the viewport to fit your web content. If you are designing an iPhone-specific web application, then set the width to the width of the device.

There is a constant you can use for the iPhone's device width: width=device-width.

Not sure if this link will work, but you can read more about Mobile Safari and the viewport tag on the Apple Developer website

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