jQuery移动旋转问题

发布于 2024-12-05 08:47:12 字数 224 浏览 0 评论 0原文

我正在尝试 jquery mobile (beta 3)。当您加载应用程序时,一切正常。但是,当您将 iPhone 旋转至水平位置时,布局无法正确调整。

可以在 http://jquerymobile.com/demos/1.0b3/ 上观察到同样的

问题有解决办法吗?

I am experimenting with jquery mobile (beta 3). Everthing works fine when you load your application. However when you rotate your iPhone to horizontal, the layout doesn't adjust itself correctly.

Same problem can be observed on http://jquerymobile.com/demos/1.0b3/

Does anyone have a solution?

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

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

发布评论

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

评论(1

清风挽心 2024-12-12 08:47:12

如果不需要缩放,是最不hackish的。

如果您想保持缩放,请尝试解决方案。

var viewport = $('meta[name="viewport"]');
var nua = navigator.userAgent;

if ((nua.match(/iPad/i)) || (nua.match(/iPhone/i)) || (nua.match(/iPod/i))) {
  viewport.attr('content', 'width=device-width, minimum-scale=1.0, maximum-scale=1.0');
  $('body')[0].addEventListener("gesturestart", gestureStart, false);
}

function gestureStart() {
  viewport.attr('content', 'width=device-width, minimum-scale=0.25, maximum-scale=1.6');
}

仅供参考:这是一个已知问题,请参阅 jQM 文档

< em>iOS 中存在一个小问题,即使用这些视口设置更改方向时无法正确设置宽度,但这有望在未来版本中得到修复。如果需要,您可以设置其他视口值以禁用缩放,因为这是页面内容的一部分,而不是库的一部分。

If zoom isn't needed <meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1"> is the least hackish.

If you want to keep zoom, try this solution.

var viewport = $('meta[name="viewport"]');
var nua = navigator.userAgent;

if ((nua.match(/iPad/i)) || (nua.match(/iPhone/i)) || (nua.match(/iPod/i))) {
  viewport.attr('content', 'width=device-width, minimum-scale=1.0, maximum-scale=1.0');
  $('body')[0].addEventListener("gesturestart", gestureStart, false);
}

function gestureStart() {
  viewport.attr('content', 'width=device-width, minimum-scale=0.25, maximum-scale=1.6');
}

FYI: this is a known issue, see jQM docs

There is a minor issue in iOS that doesn't properly set the width when changing orientations with these viewport settings, but this will hopefully be fixed a a future release. You can set other viewport values to disable zooming if required since this is part of your page content, not the library.

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