I hope you are ok.
So, the thing is, I'm writing a PhoneGap app using jQuery Mobile.
The jQuery Mobile version is: jquery.mobile-1.4.0.
I'm using several ways to do transitions between the views that are located inside the same file, not on separate html files, like this:
<div data-role="page" id="preload">
<div data-role="page" id="noConnection">
<div data-role="page" id="intro">
... and so.
The current viewport meta tag is this one:
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, target-densitydpi=device-dpi" />
So far, I have not been able to remove that blink between transitions.
About the methods to change between views, I have tried several ways but in all of them I get the same blink:
$.mobile.changePage("#termsAndConditions", {transition: "slide", reverse: false});
$.mobile.pageContainer.pagecontainer("change", "#termsAndConditions", {transition: "flow", reload: true});
Do you have any sugestion about how could I solve this?
It happens in iPhone with iOS 7, iPad with iOS 7, not tested yet in Android.
Thanks in advance for the help.