Hide content before animation finishes

This commit is contained in:
Bingus_Violet 2024-02-08 17:43:23 -06:00
parent 6d32f9b4f5
commit 3f03b0b13d

View file

@ -17,6 +17,8 @@
body {
background-color: black;
overflow-x: hidden;
animation: hideContent 2.5s;
}
main {
@ -97,4 +99,16 @@ hr {
opacity: 1;
transform: none;
}
}
@keyframes hideContent {
0% {
overflow-y: hidden;
overflow-x: hidden;
}
100% {
overflow-y: hidden;
overflow-x: hidden;
}
}