i don't really remember having seen anybody here with an intro screen which makes me think that maybe you can't do it here?
i looked up in the layout elements a code that could work here but both that show up don't work. still, here's the og code i've been trying to use(this one was made by Kayla⟡, thanks). i've tried messing with it through my layout and changed things but it's just not working. i think at some point i tried the spacehey code i used but it also didn't work.
anybody know why or how to fix this?
<style>
body::before {
content: "";
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background-image: url("https://file.garden/aAxf3vKPYlDrYcO8/sneakingboat.gif");
background-size: cover;
background-repeat: no-repeat;
background-position: center;
z-index: 999999;
pointer-events: none;
animation: loadingScreen 1s ease forwards;
}
@keyframes loadingScreen {
0% {
opacity: 1;
}
75% {
opacity: 1;
}
100% {
opacity: 0;
}
}
</style>
