I want to create a fixed container that attaches to the top of the viewport on mobile browsers, specifically on iOS and Android devices. Gmail has an awesome fixed menu bar on their mobile site, but it only seems to function correctly when you actually view it on a mobile device (so I am not able to trace how this is being accomplished).

Does anyone know how Gmail is accomplishing this?

I'm currently attaching a function to window.onscroll that changes the position of the div, but as it is right now, it doesn't continuously update the position. Once you start scrolling, the repositioning doesn't happen until after you stop scrolling. This is what I'm trying to overcome. The repositioning function itself works correctly - it's more of a timing issue.

Any suggestions?

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

Google wrote an article about their approach.

http://code.google.com/mobile/articles/webapp_fixed_ui.html

link|improve this answer
Thank you...can't believe none of my Google searches turned this article up. – matthewpavkov Jun 20 '11 at 16:55
feedback

I'm pretty sure that you can do this using jquery mobile or just regular css. You can find more info about jq mobile here: http://jquerymobile.com/ . I'm not sure offhand the plain css you can use but I know it's possible to attach something to the top like a toolbar.

link|improve this answer
JQueryMobile does have fixed-toolbars: jquerymobile.com/demos/1.0a4.1/docs/toolbars/bars-fixed.html – Brett Jun 3 '11 at 19:53
position: fixed doesn't work as expected on mobile browsers. – matthewpavkov Jun 3 '11 at 20:20
I'll check into the jQuery Mobile stuff, but the fixed bar isn't any better than mine. It's not adjusting like the Gmail one. It fades out and then back in, after a delay. The Gmail one is just there, at the top of your screen, always. Take a look at Gmail on a phone to see what I mean. – matthewpavkov Jun 3 '11 at 20:33
feedback

Your Answer

 
or
required, but never shown

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