splashscreen.hide

解雇的初始螢幕。

navigator.splashscreen.hide();

說明

此方法關閉該應用程式的初始螢幕。

支援的平臺

  • Android 系統
  • 黑莓 10
  • iOS
  • Windows Phone 7 和 8
  • Windows 8

快速的示例

navigator.splashscreen.hide();

完整的示例

<!DOCTYPE html>
<html>
  <head>
    <title>Splashscreen Example</title>

    <script type="text/javascript" charset="utf-8" src="cordova.js"></script>
    <script type="text/javascript" charset="utf-8">

    // Wait for device API libraries to load
    //
    document.addEventListener("deviceready", onDeviceReady, false);

    // device APIs are available
    //
    function onDeviceReady() {
        navigator.splashscreen.hide();
    }

    </script>
  </head>
  <body>
    <h1>Example</h1>
  </body>
</html>

iOS 怪癖

config.xml檔的 AutoHideSplashScreen 設置必須為 false 。 若要延遲兩秒鐘隱藏的閃屏,添加如下所示在計時器 [deviceready](../events/events.deviceready.html) 事件處理常式:

    setTimeout(function() {
        navigator.splashscreen.hide();
    }, 2000);