How to change the screen saver in Intel XDK?

I am creating an HTML5 application using the Intel XDK and I want to change the splash screen from the standard Project Development. How should I do it?

If this is not possible, how to remove the pop-up screen?

+4
source share
4 answers
  • When you are ready to create your application. Make a popup screen of changes to Build => Assets .

See the picture below:

http://i.stack.imgur.com/alBEQ.png

  • To remove the splash screen, just comment out the line:

    var onDeviceReady=function(){ ... //hide splash screen //**intel.xdk.device.hideSplashScreen();** }; 
+9
source

Here is an updated answer, hope this is helpful. Change xdk help screen

+2
source

when you create an application for ios / android ... you can select a screensaver and icons for your application, download there and build.

http://appcenter.html5tools-software.intel.com/

0
source

Add splashscreen to your application by creating a div in the afui div and setting the id to "splashscreen". When af.ui.launch is called, it will remove the splash screen from the DOM.

 <div id="afui"> <div id="splashscreen" class='ui-loader'> <img src="kitchensink/images/splash.png"> <br><br> <span class='ui-icon ui-icon-loading spin'></span><h1 >Starting app</h1> </div> </div> 

** Remember that this will only be displayed until the completion of $ .ui.launch, so for this a longer disabling of automatic startup is shown by setting the value of $ .ui.autoLaunch to false and starting the launch later using $ .ui.launch ().

Link: http://app-framework-software.intel.com/documentation.php#tips/tips_splashscreen

I hope for this help;)

0
source

Source: https://habr.com/ru/post/1498265/


All Articles