Comment on Simple and fast CSS page transitions in your hybrid mobile appComments−joahua14yThere's a webkit bug that is pertinent here.We can't accelerate animation on a mobile app that uses position:fixed for persistent headers due to http://code.google.com/p/chromium/issues/detail?id=20574This makes for some jerky transitions, unfortunately, but the alternative is forgoing the simplicity and performance afforded by position:fixed for persistent nav.−amirnathooOP14yWith trigger.io you can use native titlebar and tabbar elements so you don't have to mess around with position:fixed http://docs.trigger.io/en/v1.4/modules/topbar.html#modules-t...:-D
Comments
There's a webkit bug that is pertinent here.
We can't accelerate animation on a mobile app that uses position:fixed for persistent headers due to http://code.google.com/p/chromium/issues/detail?id=20574
This makes for some jerky transitions, unfortunately, but the alternative is forgoing the simplicity and performance afforded by position:fixed for persistent nav.
With trigger.io you can use native titlebar and tabbar elements so you don't have to mess around with position:fixed http://docs.trigger.io/en/v1.4/modules/topbar.html#modules-t...
:-D