splash-screen

Remove name in PWA splash screen

元气小坏坏 提交于 2019-12-05 12:56:48
how can I remove the name in the splash screen of my progressive web app? The app name is already in the logo / icon. That's why I don't want to see the name in the bottom of the splash screen again. example manifest.json: { "name": "HackerWeb", "short_name": "HackerWeb", "start_url": ".", "display": "standalone", "background_color": "#fff", "description": "A simply readable Hacker News app.", "icons": [{ "src": "images/touch/homescreen48.png", "sizes": "48x48", "type": "image/png" }, { "src": "images/touch/homescreen72.png", "sizes": "72x72", "type": "image/png" }] } There is not a way to

Cordova 3.4 Splashscreen not working

雨燕双飞 提交于 2019-12-05 12:39:23
I have an Android Phonegap proyect and I'm trying to use the Splashscreen plugin Cordova provides. I think I have everything correctly set... Here are the pieces of code I think are relevant. Config.xml <widget ...> ... <preference name="SplashScreen" value="screen" /> <preference name="SplashScreenDelay" value="15000" /> <plugin name="SplashScreen" value="org.apache.cordova.SplashScreen"/> </widget> Index.html <script type="text/javascript" charset="utf-8"> function onLoad() { document.addEventListener("deviceready", onDeviceReady, false); } function onDeviceReady() { navigator.splashscreen

Cordova iOS Splash Screen

偶尔善良 提交于 2019-12-05 11:41:24
I can't make the splash screen stay until the page is loaded. I have read every entry in the first, second and third page of google search. I read all the questions posted here on stackoverflow including A good explanation but none seem to work. What's worse is that the behavior I'm seeing is all wrong. Following the instructions here I added alert at the deviceready event and I saw it happens after the white page is gone and my initial page is loaded. I installed the plugin and included the following in the root level config.xml: <feature name="SplashScreen"> <param name="ios-package" value=

Loading screen example

风格不统一 提交于 2019-12-05 07:26:32
问题 My HTML: <html> <head> <link rel="stylesheet" href="C:\Users\coeconsultant3\Desktop\Loadingexample\abccss.css"> <title></title> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> <script type="text/javascript"> $(window).load(function () { $("#loader").fadeOut("slow"); }) </script> </head> <body> <div id="loader"></div> <div id="page1"> <p> <h1>Hello World !!! </h1> </p> </div> </body> </html> CSS for loader : #loader { position: fixed; left: 0px; top: 0px;

Splash screen does not return focus to main form

妖精的绣舞 提交于 2019-12-05 03:48:20
I everyone. I currently have a problem with my focus when using a splash screen. I am using VS2008, with .NET framework 2.0. Also, I have linked my project with the VisualBasic.dll since I use the ApplicationServices to manage my single instance app and splash screen. Here is a code snippet simplified of what I tried debugging. namespace MyProject { public class Bootstrap { /// <summary> /// Main entry point of the application. It creates a default /// Configuration bean and then creates and show the MDI /// Container. /// </summary> [STAThread] static void Main(string[] args) { // Creates a

Using a gif in Splash Screen in pyqt

守給你的承諾、 提交于 2019-12-05 03:04:01
问题 I am new to gui designing with pyqt.. I want to use a gif in the splash screen.. using this code.. from PyQt4.QtCore import * from PyQt4.QtGui import * class Form(QDialog): def __init__(self, parent=None): super(Form, self).__init__(parent) self.browser = QTextBrowser() self.setWindowTitle('Just a dialog') if __name__ == "__main__": import sys, time app = QApplication(sys.argv) # Create and display the splash screen splash_pix = QPixmap('a.gif') splash = QSplashScreen(splash_pix, Qt

git server information or ascii on remote operations (clone)

点点圈 提交于 2019-12-05 02:32:53
问题 How can I configure my git server to display additional information or ascii art on remote operations such as clone ? An example would be on this page and is shown below. F:\>git clone https://myserver/tfs/DefaultCollection/_git/Proj Username for 'https://myserver': domain\username Password for 'https://domain\username@myserver': remote: remote: fTfs remote: fSSSSSSSs remote: fSSSSSSSSSS remote: TSSf fSSSSSSSSSSSS remote: SSSSSF fSSSSSSST SSSSS remote: SSfSSSSSsfSSSSSSSt SSSSS remote: SS

Swipe a splash screen to get to a login screen (Android Application)

喜你入骨 提交于 2019-12-04 22:54:40
I am developing an android application where currently: 1. splash screen displays 2. splash goes away and login screen appears What I would like to happen is for the splash screen to stay on the screen until a user swipes the screen left or right which will then bring them to the login screen. I am relatively new to this and have no idea how to go about implementing this. Any help would be greatly appreciated. There can be more than one way to achieve this - 1.) Use a View Pager approach - http://developer.android.com/training/animation/screen-slide.html 2.) You can detect swipe gesture and

Splash Screen Problem

£可爱£侵袭症+ 提交于 2019-12-04 20:40:16
I am building an application. For splash screen I've just taken the default.png into resources folder and set the sleep time into AppDelegate.m. Till here it is working fine , My Application is getting launch with the splash screen for given seconds. Now I want to change the ViewTransition of Flipping the splash screen. How can I do that ? Thanks Just add a view with uiimageview and set its image to default.png. load this view in the beginning. After you splash screen unloads this shuld be the you view and then flip it. You can't do the flip transition with default.png , try to add a view with

Inno Setup - Transparent Splash Screen

懵懂的女人 提交于 2019-12-04 19:41:17
I have a problem and I need your help..I want to find a differente way to put a transparent splash screen or the correction of my code. The code here works... but there is a problem, some people get an error at the end of the installation. This is how look the error at the end of the installation I check another lines in my code and I found that the problem was the code of the splash screen, if I delete it the installer works perfect, I see that what I need is a procedure DeinitializeSetup(); but I don't know how tu put it in the splash screen section, I get this kind of error if I delete the