I'm having the same problem that a couple of others have had with getting the correct behavior in a web app on an orientation change, and there doesn't seem to be an obvious solution - I've seen this question asked a couple of times on Stack Overflow and no one's yet been able to answer it.

When I start the app in portrait mode, it works fine. Then I rotate into landscape and it's scaled up. To get it to scale correctly for the landscape mode I have to double tap on something twice, first to zoom all the way in (the normal double tap behavior) and again to zoom all the way out (again, the normal double tap behavior). When it zooms out, it zooms out to the correct NEW scale for landscape mode.

Switching back to portrait seems to work more consistently; that is, it handles the zoom so that the scale is correct when the orientation changes back to portrait.

I am trying to figure out if this is a bug? or if this is something that can be fixed with Javascript?

With the viewport meta content, I am setting the initial-scale to 1.0 and I am NOT setting minimum or maximum scale (nor do I want to). I am setting the width to device-width.

Any ideas? I know a lot of people would be grateful to have a solution as it seems to be a persistent problem.

Thank you!

link|improve this question

feedback

7 Answers

up vote 24 down vote accepted

Jeremy Keith (@adactio) has a good solution for this on his blog Orientation and scale

Keep the Markup scalable by not setting a maximum-scale in markup.

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

Then disable scalability with javascript on load until gesturestart when you allow scalability again with this script:

if (navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPad/i)) {
    var viewportmeta = document.querySelector('meta[name="viewport"]');
    if (viewportmeta) {
        viewportmeta.content = 'width=device-width, minimum-scale=1.0, maximum-scale=1.0, initial-scale=1.0';
        document.body.addEventListener('gesturestart', function () {
            viewportmeta.content = 'width=device-width, minimum-scale=0.25, maximum-scale=1.6';
        }, false);
    }
}
link|improve this answer
1  
Surely this is better than disabling zoom?! The best fix I've found yet :) – danwellman Sep 23 '11 at 13:58
this worked for me too. thanks! – 29er Oct 31 '11 at 4:30
Hmm, this still disables the ability to zoom. Does anyone have a simple solution that doesn't do this? – Brad Swerdfeger Feb 20 at 7:00
It works, however I observed that the issue starts again if i use pinch-zoom gesture and then rotate the screen. Not sure how to fix it. – Nilesh Mar 5 at 12:56
1  
It works. However, I've noticed the user has to pinch open twice in order to zoom. I'm guessing this is because the maximum-scale=1.0 stays in effect after the gesture starts. Is there any way to fix this? – helixed May 6 at 22:56
feedback

I had the same problem, and setting the maximum-scale=1.0 worked for me. I have yet to find any downsides with this solution, since when the content exeeds the width-resolution it the device still allows zooming out.

The viewport code:

    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0;">
link|improve this answer
Thanks, I'll give this a try! – Elisabeth May 8 '10 at 4:42
Nice solution. Does a good job keeping the page at a constant zoom level (relative to the width of the device) through orientation changes. Thanks for sharing it! – Lucanos Apr 19 '11 at 15:16
5  
the downside is that disabled users can't zoom in on your site! – akisma May 17 '11 at 17:48
the delimiters should be commas: "width=device-width, initial... – meleyal Jun 24 '11 at 11:05
I noticed that all of these methods seem to prevent media-query based CSS from registering the new device width properly (ex: @media all and (max-width: 479px) – mheavers Aug 23 '11 at 20:26
feedback

If you have the width set in the viewport :

<meta name = "viewport" content = "width=device-width; initial-scale=1.0;
 maximum-scale=1.0;" />

And then change the orientation it will randomly zoom in sometimes (especially if you are dragging on the screen) to fix this don't set a width here I used :

<meta id="viewport" name="viewport" content="initial-scale=1.0; user-scalable=0;
minimum-scale=1.0; maximum-scale=1.0" />

This fixes the zoom whatever happens then you can use either window.onorientationchange event or if you want it to be platform independant (handy for testing) the window.innerWidth method.

link|improve this answer
feedback

Scott Jehl came up with a fantastic solution that uses the accelerometer to anticipate orientation changes. This solution is very responsive and does not interfere with zoom gestures.

https://github.com/scottjehl/iOS-Orientationchange-Fix

How it works: This fix works by listening to the device's accelerometer to predict when an orientation change is about to occur. When it deems an orientation change imminent, the script disables user zooming, allowing the orientation change to occur properly, with zooming disabled. The script restores zoom again once the device is either oriented close to upright, or after its orientation has changed. This way, user zooming is never disabled while the page is in use.

Minified source:

/*! A fix for the iOS orientationchange zoom bug. Script by @scottjehl, rebound by @wilto.MIT License.*/(function(m){if(!(/iPhone|iPad|iPod/.test(navigator.platform)&&navigator.userAgent.indexOf("AppleWebKit")>-1)){return}var l=m.document;if(!l.querySelector){return}var n=l.querySelector("meta[name=viewport]"),a=n&&n.getAttribute("content"),k=a+",maximum-scale=1",d=a+",maximum-scale=10",g=true,j,i,h,c;if(!n){return}function f(){n.setAttribute("content",d);g=true}function b(){n.setAttribute("content",k);g=false}function e(o){c=o.accelerationIncludingGravity;j=Math.abs(c.x);i=Math.abs(c.y);h=Math.abs(c.z);if(!m.orientation&&(j>7||((h>6&&i<8||h<8&&i>6)&&j>5))){if(g){b()}}else{if(!g){f()}}}m.addEventListener("orientationchange",f,false);m.addEventListener("devicemotion",e,false)})(this);
link|improve this answer
Nice! Looks like an elegant solution. – Elisabeth May 13 at 17:44
feedback

Elisabeth you can change viewport content dinamically by adding the "id" property to the metatag:

<meta name="viewport" id="view" content="user-scalable=yes, width=device-width minimum-scale = 1, maximum-scale = 1" />

Then you just can call by javascript:

document.getElementById("view").setAttribute('content','user-scalable=yes, width=device-width, minimum-scale = 1, maximum-scale = 10');
link|improve this answer
@bridgestew if you wanna change zoom or viewport dinamically use the subview scrollview contained into the uiwebview. I added a sample snipet on other thread: link – M Penades Feb 17 '11 at 9:02
2  
@Elisabeth does it work for you ? It doesn't reset the zoom when switching in landscape mode for me. – streetpc Apr 20 '11 at 17:36
No doesn't work for me either. – Elisabeth May 13 at 17:45
feedback

MobileSafari supports the orientationchange event on the window object. Unfortunately there doesn't seem to be a way to directly control the zoom via JavaScript. Perhaps you could dynamically write/change the meta tag which controls the viewport — but I doubt that would work, it only affects the initial state of the page. Perhaps you could use this event to actually resize your content using CSS. Good luck!

link|improve this answer
3  
Thanks! Yes, I tried dynamically changing the meta tag viewport values and it did nothing. It seems to me that if you rotate into Landscape you want it to zoom correctly to keep the scale so that the page fits into the Safari window. It seems very odd to me that this is not the default behavior! – Elisabeth Apr 1 '10 at 3:08
feedback

I created a working demo of a landscape/portrait layout but the zoom must be disabled for it to work without JavaScript:

http://matthewjamestaylor.com/blog/ipad-layout-with-landscape-portrait-modes

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.