Page Transition Flickering
There are a lot of flickerings & flashing when it comes to page transition in my Samsung S3 Android 4.1.2 device.
I use Phonegap 3.1.0, JQuery 1.10.2 and JQuery Mobile 1.3.2
This issue seems to trouble a lot of developers for more than 3 years now. Is there a solid solution for this? Is there a JQuery mobile version that handles page transitions with greatness? Or a workaround for this? (and I don't mean setting the pageTransition to 'none')
Up to now I've tried:
1)
- <meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1">
2)
- $(document).on("mobileinit", function() {
- $.mobile.touchOverflowEnabled = true;
- });
3) Commenting out:
- meta.attr( "content", enabledZoom );
- meta.attr( "content", disabledZoom );
in JQM javascript file
4) css from JQM docs:
- .ui-mobile-viewport > div
- {
- display: none;
- }
- .ui-mobile-viewport > div.ui-page-active
- {
- display: block;
- }
5) other css:
- .ui-page {
- -webkit-backface-visibility: hidden;
- }
- .ui-page, .ui-page * {
- -webkit-transform:translateZ(0);
- }
BUT with no luck!!!