jQuery移动旋转问题
我正在尝试 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果不需要缩放,
是最不hackish的。
如果您想保持缩放,请尝试此解决方案。
仅供参考:这是一个已知问题,请参阅 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.
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.