1
Fork 0

Update comments and animation for Splash

This commit is contained in:
KorbsStudio 2023-02-07 16:49:05 -05:00
parent 3e998ca2a0
commit 30e1401fa9
No known key found for this signature in database
2 changed files with 20 additions and 2 deletions

View file

@ -8,8 +8,8 @@ export const APP = [{
// Splash
export const SPLASH = [
{
loading: "Spinner", // "Spinner" "Pulse" "ProgressBar" "LogoOnly" "None"
background: "#121212"
loading: "Spinner", // "Spinner" "ProgressBar" "JumpingBalls" "GlowingBars"
background: "#232323"
}
]

View file

@ -1,3 +1,18 @@
@keyframes splash {
0% {
opacity: 1;
pointer-events: all;
}
90% {
opacity: 1;
pointer-events: all;
}
100% {
opacity: 0;
pointer-events: none;
}
}
.splash {
position: fixed;
z-index: 100;
@ -6,6 +21,9 @@
left: 0px;
width: 100%;
height: 100%;
opacity: 0;
pointer-events: none;
animation: 2.4s splash ease-in-out;
.splash-content {
position: fixed;
top: 50%;