vote up 0 vote down star

Is it possible to create a sticky header or footer such that no matter where you scroll the header/footer stays put? I'm looking for a HTML/css/javascript solution for iPhone/webkit.

flag

64% accept rate

3 Answers

vote up 1 vote down

You'd need to do this with JavaScript, as MobileSafari deliberately leaves out support for CSS's position: fixed. You should be able to detect the current viewport and absolutely position an element in the right spot, and update its location when the viewport changes.

link|flag
vote up 1 vote down

There is also another attempt to emulate position: fixed :

http://cubiq.org/scrolling-div-on-iphone-ipod-touch/5

But it's hacky, and not very performant too.

You are right, Titanium or phonegap do the job well...

link|flag
vote up 0 vote down check

Answering my own question: best resource I've found so far is this one: http://doctyper.com/archives/200808/fixed-positioning-on-mobile-safari/

However, I think I'm going to end up using Titanium from Appcelerator instead of just html/css.

link|flag

Your Answer

Get an OpenID
or

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