Random white flash in phonegap application

I have an application that I made using Phonegap and JQuery Mobile, which is between several multi-page JQuery Mobile docs. Its works well for what I need, but the strange thing that happens is that sometimes I get a white flash when switching between different html files. Now I saw that this is a common problem when using JQM and Phonegap, but from all the other posts I looked at, but because you got rid of page transitions, are there any other solutions? Was this issue resolved in Phonegap 2.5?

Im using jQuery Mobile 1.3, jQuery 1.9 and Phonegap 2.4

+4
source share
1 answer

There is good documentation for here.

I recently had a similar problem, you can either set the page transition to "none":

<a href="" data-transition="none">XX</a>

This softened all the flickering problems for me.

You can also try adding this:

.ui-page { -webkit-backface-visibility: hidden; }

For your CSS, this is not an ideal solution, and for me there was serious instability.

+3
source

All Articles