1
我正在開發使用angularjs和phonegap的應用程序。
使用"deviceready"
eventlistner我試圖顯示啓動畫面,但它不工作。如何在angularjs phonegap應用程序中顯示啓動畫面?
下面是示例:
<body ng-controller="MainCtrl" onload="onLoad();">
<script>
function onDeviceReady() {
navigator.splashscreen.show();
setTimeout(function() {
navigator.splashscreen.hide();
}, 10000);
}
function onLoad() {
document.addEventListener("deviceready", onDeviceReady, true);
}
</script>
</body>
誰能幫助? 感謝您的幫助。
初始屏幕是反模式:http://cyrilmottier.com/2012/05/03/splash-screens-are-evil-dont-use-them/ http:///www.androiduipatterns.com/2011/07/trending-android-ui-anti-patterns.html http://www.youtube.com/watch?v=pEGWcMTxs3I http://www.youtube.com/watch?v = LhzAr9reu_4 https://medium.com/design-ux/f905a45b54dc請不要在啓動畫面上浪費用戶的時間。 – CommonsWare
謝謝.. :)但如果這是一個要求,可以解決什麼問題? – Amb
將這些鏈接傳遞給將其作爲「要求」的人,以及該人的老闆,並將其鏈接起來。 – CommonsWare