fade in animation on app startup

This commit is contained in:
b1ek 2023-08-12 17:11:19 +10:00
parent e2855811d3
commit 3a4394204c
Signed by: blek
GPG Key ID: 14546221E3595D0C
2 changed files with 29 additions and 1 deletions

View File

@ -5,5 +5,7 @@
<Titlebar />
<div class='backdrop'>
<div class='delay-show'>
<Load />
</div>
</div>

View File

@ -13,3 +13,29 @@ body, html {
border-radius: 16px;
z-index: 0;
}
@keyframes delay-show-fade-in {
0% {
opacity: 0;
position: relative;
top: 10%;
}
50% {
opacity: 0;
position: relative;
top: 10%;
}
to {
opacity: 1;
position: relative;
top: 0%;
}
}
.delay-show {
position: relative;
top: 10%;
display: block;
opacity: 1;
animation: delay-show-fade-in 1.5s ease;
}