作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我无法延迟 IOS 和 Android 上的启动画面,只有在 InAppBroswer 完成后才能将其删除。这是我试过的逻辑
config.xml
<preference name="splashScreenDelay" value="10000" />
<preference name="AutoHideSplashScreen" value="false" />
<html>
<head>
<title>Example App</title>
<meta charset="utf-8">
<link href="css/index.css" rel="stylesheet" type="text/css">
</head>
<script src="cordova.js" type="text/javascript" ></script>
<script src="js/main.js" type="text/javascript"></script>
<script type="text/javascript" charset="utf-8">
// Wait for device API libraries to load
//
document.addEventListener("deviceready", onDeviceReady, false);
// Global InAppBrowser reference
var iabRef = null;
function onDeviceReady() {
iabRef = window.open('https://www.example.com/app', '_self', 'location=no,toolbar=no');
iabRef.addEventListener('loadstop', function() {
navigator.splashscreen.hide();
});
document.addEventListener("backbutton", function (e) {
e.preventDefault();
}, false );
}
</script>
<body>
<iframe src="https://www.example.com/app" style="width:100%; height:100%;">
</body>
</html>
最佳答案
Inappbrowser 在页面加载完成后有一个回调。
阅读 documentation .见 addEventListener
它可能看起来像这样:
ref.addEventListener('loadstop', function() {
navigator.splashscreen.hide();
});
关于cordova - InAppBroswer 加载完成后隐藏闪屏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35682126/
我无法延迟 IOS 和 Android 上的启动画面,只有在 InAppBroswer 完成后才能将其删除。这是我试过的逻辑 config.xml index.html Example App
我是一名优秀的程序员,十分优秀!