Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm building a iPhone Web Application and want to lock the orientation to portrait mode. is this possible? Are there any web-kit extensions to do this?

Please note this is an application written in HTML and JavaScript for Mobile Safari, it is NOT a native application written in Objective-C.

share|improve this question
The whole reason for building a web application and not a native app is so it can be cross platform, why would you build an iPhone specific web app, are you looking at writing extra code to lock out other phones??? – user903601 Nov 26 '11 at 7:24

3 Answers

up vote 47 down vote accepted

You can specify CSS styles based on viewport orientation: Target the browser with body[orient="landscape"] or body[orient="portrait"]

http://www.evotech.net/blog/2007/07/web-development-for-the-iphone/

However...

Apple's approach to this issue is to allow the developer to change the CSS based on the orientation change but not to prevent re-orientation completely. I found a similar question elsewhere:

http://ask.metafilter.com/99784/How-can-I-lock-iPhone-orientation-in-Mobile-Safari

share|improve this answer
Thanks but, I'm doing that part already, what I really want is to prevent Mobile Safari to not switch orientation on me when the user tilts the phone. – Kevin Jul 30 '09 at 14:44
3  
Apple's approach to this issue to to allow the developer to change the CSS based on the orientation change but not to prevent re-orientation completely. I found a similar question elsewhere: ask.metafilter.com/99784/… – Scott Fox Jul 30 '09 at 15:00
Scott - if you copy your latest comment into the answer, I'll mark it as the accepted answer and give you the karma points :) – Kevin Jul 30 '09 at 16:04
Thanks Kevin! I appreciate it. – Scott Fox Jul 31 '09 at 20:03

This is a pretty hacky solution, but it's at least something(?). The idea is to use a CSS transform to rotate the contents of your page to quasi-portrait mode. Here's JavaScript (expressed in jQuery) code to get you started:

$(document).ready(function () {
  function reorient(e) {
    var portrait = (window.orientation % 180 == 0);
    $("body > div").css("-webkit-transform", !portrait ? "rotate(-90deg)" : "");
  }
  window.onorientationchange = reorient;
  window.setTimeout(reorient, 0);
});

The code expects the entire contents of your page to live inside a div just inside the body element. It rotates that div 90 degrees in landscape mode - back to portrait.

Left as an exercise to the reader: the div rotates around its centerpoint, so its position will probably need to be adjusted unless it's perfectly square.

Also, there's an unappealing visual problem. When you change orientation, Safari rotates slowly, then the top-level div snaps to 90degrees different. For even more fun, add

body > div { -webkit-transition: all 1s ease-in-out; }

to your CSS. When the device rotates, then Safari does, then the content of your page does. Beguiling!

share|improve this answer
Thanks for the hack. – Morten Kristensen May 24 '11 at 16:37
1  
Grumdrig, you are my hero! This is the most useful and working iPhone web-app related tip I've ever seen on this site. Thanks A LOT! – noober Oct 30 '11 at 23:25
Before I read this response, I was about to suggest on the "accepted" answer comments that somebody ELSE should try this and tell me if it worked. I'm really glad somebody already did, and that it did! – Lane Nov 4 '11 at 19:47
what if the div is rectangular? what's the formula to correctly set the transform origin? TA – superjos Dec 20 '12 at 18:59
You can also control it by the option "Supported Interface Orientation" on xCode, under Iphone/iPod development info. Worked well – Rodrigo Dias Jan 28 at 14:30

The following code was used in our html5 game.

$(document).ready(function () {
     $(window)    
          .bind('orientationchange', function(){
               if (window.orientation % 180 == 0){
                   $(document.body).css("-webkit-transform-origin", "")
                       .css("-webkit-transform", "");               
               } 
               else {                   
                   if ( window.orientation > 0) { //clockwise
                     $(document.body).css("-webkit-transform-origin", "200px 190px")
                       .css("-webkit-transform",  "rotate(-90deg)");  
                   }
                   else {
                     $(document.body).css("-webkit-transform-origin", "280px 190px")
                       .css("-webkit-transform",  "rotate(90deg)"); 
                   }
               }
           })
          .trigger('orientationchange'); 
});
share|improve this answer
how do you figure out those numbers for the transform origin? – superjos Dec 20 '12 at 19:36
just experimentally – Andrei Schneider Dec 21 '12 at 10:28

protected by Community Aug 1 '12 at 15:15

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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