ios - Random white flash in phonegap app -
I have an app created with phonegap and jazzery mobile which runs between multiple multiuser jazz mobile documents. It works well for the work I want, but the odd thing is that sometimes I get a white flash when I go between different HTML files. Now I have seen that this is a common issue, while using JQM and Phonegap, but all the other posts I have seen but there is no other solution than getting rid of page transition? Has this problem been resolved in PhoneGap 2.5?
I use Jquery Mobile 1.3, Jquery 1.9, and Phonegap 2.4
something Well documented for this
I had a similar problem recently, you can either set page transition to 'None':
This eliminates all the issues of flicker. You can also try to add it: For your CSS, this is not a correct fix, and causes severe instability for me.
.ui-page {-webkit-backface-visibility: hidden; }
Comments
Post a Comment