JQuery Mobile Beta 1 is not resizing the screen on iphone when rotated to landscape

浪子不回头ぞ 提交于 2019-11-30 21:03:55

In your document <head> instead of doing this:

<meta name="viewport" content="width=device-width, initial-scale=1"> 

Do this:

<meta name="viewport" content="initial-scale=1, maximum-scale=1">

Why this works

When your device oritentation changes (i.e. when you rotate it) MobileSafari will zoom into the page before it resizes the viewport. So the zoom is applied based on the portrait screen width when it should just let the page resize on its own. By setting both initial and maximum scale to 1 we disable zooming. So MobileSafari can't zoom into your page incorrectly when you rotate, thereby fixing the problem.

Also see: jQuery Mobile bug report

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!