我可以阻止 mobile safari 在 iPod touch 或 iPhone 上自动旋转屏幕吗?

发布于 2024-08-28 07:39:01 字数 341 浏览 4 评论 0原文

我们有一个离线 Safari 应用程序,其 UI 专为垂直使用而设计(像素完美)。我们希望无论用户如何旋转 iPod/iPhone,UI 都保持垂直。 Safari 离线应用程序可以吗?

这个问题与 我可以阻止 mobile safari 在 iPod touch 或 iphone 上自动旋转屏幕吗? .然而 - 所提到的问题没有明确的答案,并且已被过早地接受。

We have an offline Safari application with UI designed for vertical use (pixel perfect). We would like the UI to stay vertical no matter what how the user rotates the ipod / iphone. Is it possible with offline Safari application?

This question is exactly the same as Can I prevent mobile safari from auto-rotating the screen on ipod touch or iphone? . Yet - the referenced question has no definite answer and has been prematurely accepted.

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

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

发布评论

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

评论(1

粉红×色少女 2024-09-04 07:39:01

如果需要在 Safari 而不是带有嵌入式 UIWebView 的本机应用程序中运行,我不知道有什么方法可以阻止旋转。

虽然您无法阻止旋转,但可以像这样进行补偿:

  1. 使用 updateorientation 事件检测旋转
  2. 在事件处理程序中,使用 window.orientation 查找当前方向。 (例如 0、90、-90、180)
  3. 更新元素的类以反映当前方向,并使用 -webkit-transform:rotate(-90deg) 等样式向相反方向旋转 UI。
  4. 如有必要,请使用 window.scrollTo(0, 1);将地址栏滚动出屏幕。

I'm not aware of any way to prevent the rotation if it needs to run in Safari rather than a native app with an embedded UIWebView.

While you can't prevent the rotation, you can compensate for it like this:

  1. Detect the rotation using the updateorientation event
  2. In your event handler, find the current orientation using window.orientation. (e.g. 0, 90, -90, 180)
  3. Update the class of your element to reflect the current orientation, and use styles like -webkit-transform:rotate(-90deg) to rotate your UI in the opposite direction.
  4. If necessary, use window.scrollTo(0, 1); to scroll the address bar off the screen.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文