|
发表于 2017-3-27 13:55:03
|
显示全部楼层
修改/UI2/system/components/justep/window/main.html文件中
document.addEventListener('deviceready', function() {
if (navigator && navigator.splashscreen && navigator.splashscreen.hide) {
/*延迟隐藏,视觉效果更理想*/
setTimeout(function() {navigator.splashscreen.hide();}, 800);
}
}, false);
将以上代码注释, 在自己的首页的js中调用setTimeout(function() {navigator.splashscreen.hide();}, 800);
|
|