vote up 1 vote down star
3

I want my website to change its layout according to the device positon. The site has 2 layout types: vertical(height > width) ang horizontal(width > height).

do you see any solution?

upd: I don't see any complexity in changing the site layout. I want to know is there any event to handle. p.s. will iphone's browser change its orientation if i rotate the device 90 degree? Dave, tnx for emendation.

flag

80% accept rate
For the record, it's an accelerometer (that measures where gravity is relative to the phone), not a gyroscope. – FryGuy Jan 11 '09 at 21:16

2 Answers

vote up 4 vote down check

There is a javascript event called onorientationchange sent when the orientation changes and also there is a property called orientation on the window object that tells what the current orientation is.

See the documentation for more info and sample.

link|flag
vote up 0 vote down

Disclaimer: I don't have any iPhone development experience, but the general idea is universal so I'll take a swipe at it anyway.

Suggestion #1: Is it possible to use stylesheets? The browser would have to have some kind of scripting event that could be handled, switching the stylesheet.

Suggestion #2: A different URL altogether. The browser still needs to kick off an event that can be handled.

Either way, you need to find a browser event that can be handled.

link|flag

Your Answer

Get an OpenID
or

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