简体   繁体   中英

Blank Screen between a SplashScreen and webview in phonegap iOS

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

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

Thanks

Try removing page transitions, This helped me to some extent, and use latest phonegap. Use the following code before including jquery mobile library.

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

Edit: Oops, it was between splash screen and the first screen. Try this link

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM