先到插件网站找这个插件
html
插件网站地址 http://cordova.apache.org/plugins/ apache
而后找到了这个npm
插件 地址是https://www.npmjs.com/package/cordova-plugin-splashscreen
网络
经过命令行安装插件cordova plugin add cordova-plugin-splashscreenapp
安装完以后你发现项目多了点东西好比
eclipse
仔细观察下项目的目录结构,你会发现ide
screen.png对应的就是欢迎页面。测试
你能够将本身的screen.png覆盖掉全部的,固然大小最好按照原来的各个尺寸。。网站
用eclipse运行一下。结果就ok了。ui
再说下插件的几个属性
SplashScreen (string). The resource name which is used for the displaying splash screen. Different platforms use values for this.
<preference name="SplashScreen" value="resourcename" />
AutoHideSplashScreen (boolean, default to true
). Indicates wherether hide splash screen automatically or not. Splash screen hidden after amount of time specified in the SplashScreenDelay
preference.
<preference name="AutoHideSplashScreen" value="true" />
SplashScreenDelay (number, default to 3000). Amount of time in milliseconds to wait before automatically hide splash screen.
<preference name="SplashScreenDelay" value="3000" />
在config.xml中能够配置
<preference name="SplashScreen" value="resourcename" />
resourcename指定的是资源的文件名。假如咱们这里不设置。
默认就是
<preference name="SplashScreen" value="screen" /> 为了作个测试,我在各个文件夹下添加了screen1.png 而后在config.xml中指定 <preference name="SplashScreen" value="screen1" /> 再运行一下发现欢迎页面变成了screen1.png图片
<preference name="SplashScreenDelay" value="3000" />
对应这个设置,若是咱们首次进入首页会比较慢,好比首页指定的是非本地的html,指定的是一个网络地址的文件,咱们能够考虑将value设置为100000 也便是10秒。而后再在
设备准备好以后
执行navigator.splashscreen.hide(); 例子以下
var app = { // Application Constructor initialize: function() { this.bindEvents(); }, // Bind Event Listeners // // Bind any events that are required on startup. Common events are: // 'load', 'deviceready', 'offline', and 'online'. bindEvents: function() { document.addEventListener('deviceready', this.onDeviceReady, false); }, // deviceready Event Handler // // The scope of 'this' is the event. In order to call the 'receivedEvent' // function, we must explicitly call 'app.receivedEvent(...);' onDeviceReady: function() { //app.receivedEvent('deviceready'); navigator.splashscreen.hide(); },