javascript - Blank Screen between a SplashScreen and webview in phonegap iOS -


how can avoid blank white screen appearing between phonegap splashscreen , webview loading stage in ios.i have followed suggested solutions..like [1]: http://docs.phonegap.com/en/2.5.0/cordova_splashscreen_splashscreen.md.html#splashscreen,and other still white screen persists after setting time delay.

i'm loading external mobile website inside local index.html file using window.location.href. 

thanks

try removing page transitions, helped me extent, , use latest phonegap. use following code before including jquery mobile library.

$(document).bind("mobileinit", function(){ $.mobile.defaultpagetransition="none" }); 

edit: oops, between splash screen , first screen. try link


Comments