Splashscreen stays on too long

Hi!
My problem is, that my splahscreen stays on too long. That’s what I’m thinking. Since it is hard to described, I made a video showing the problem.

The splah image was created following this guide.

My plugin list:

com.ionic.keyboard 1.0.4 "Keyboard"
com.megster.cordova.ble 0.1.9 "BLE"
cordova-plugin-splashscreen 2.1.1-dev "Splashscreen"
nl.x-services.plugins.toast 2.0.4 "Toast"
org.apache.cordova.console 0.2.13 "Console"
org.apache.cordova.device 0.3.0 "Device"

In my config.xml I entered the following

<preference name="SplashScreen" value="screen"/>
<preference name="AutoHideSplashScreen" value="false"/>
<preference name="SplashScreenDelay" value="3000" /> 

I also added the this to my app.js ready function

setTimeout(function () {
    $cordovaSplashscreen.hide()
}, 1000)

I changed the values, but had no success…

Ok.
I removed the timeout function and only played with the config.xml

<preference name="SplashScreenDelay" value="1500" />

Still not perfect, but works for me…