0

如何避免在 iOS 中的 phonegap 闪屏和 webview 加载阶段之间出现空白白屏。我遵循了建议的解决方案..如 [1]:http ://docs.phonegap.com/en/2.5.0/cordova_splashscreen_splashscreen .md.html#Splashscreen 和其他但即使在设置时间延迟后仍然存在白屏。

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

谢谢

4

1 回答 1

0

尝试删除页面转换,这在一定程度上帮助了我,并使用了最新的 phonegap。在包含 jquery 移动库之前使用以下代码。

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

编辑:糟糕,它在初始屏幕和第一个屏幕之间。试试这个 链接

于 2013-09-05T09:31:57.953 回答