vote up 0 vote down star

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.

flag

75% accept rate

1 Answer

vote up 2 vote down check

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

link|flag
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 at 14:44
1  
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 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 at 16:04
Thanks Kevin! I appreciate it. – Scott Fox Jul 31 at 20:03

Your Answer

Get an OpenID
or

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