qcobjects-docs
Version: 
The official app and website for documentation of QCObjects
19 lines (16 loc) • 813 B
Markdown
#### org.quickcorp.components.splashscreen.VideoSplashScreenComponent
A powerful component definition to allow you create an awesome Video Splash Screen for your progressive web app.
##### Example:
```html
<!-- Add the splash screen component tag as the first component in your HTML document -->
<component componentClass="VideoSplashScreenComponent"
	data-background="./img/splash/splashscreen-aqua.png"
	data-video_mp4="./img/splash/splashscreen-aqua.mp4"
	data-video_webm="./img/splash/splashscreen-aqua.webm"
	data-video_ogg="./img/splash/splashscreen-aqua.ogv" duration="5000">
	<img slot="logo" alt="logo" src="./img/logo-qcobjects-white.svg"></div>
</component>
<!-- Then you can put your main component as always -->
<component name="main" cached=true controllerClass="MainController">
</component>
```