Android 4.0+, , 2.9. JQM 1.3:
- , "none"
- ,
Tested on SGII, Motorola MC40, TC55, same problems on all platforms.
Use custom style for header, footer, content, delete data-position = "fixed"
Use JQM initialization (remember, put JS before JQM)
.header {
position : fixed !important;
z-index : 10 !important;
top : 0 !important;
width : 100% !important;
}
.content {
padding : 55px 15px !important;
}
.footer {
position : fixed !important;
z-index : 10 !important;
bottom : 0 !important;
width : 100% !important;
}
$(document).bind("mobileinit", function()
{
$.mobile.defaultPageTransition = "fade";
$.mobile.transitionFallbacks='none';
$.mobile.useFastClick = false;
});
source
share