mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-17 07:34:38 -05:00
add fadein for mainpage
This commit is contained in:
parent
a86d33b790
commit
fdb7066aba
1 changed files with 28 additions and 2 deletions
|
@ -361,9 +361,29 @@ line-height: 24px;
|
||||||
z-index: 10; /* Was 2 */"
|
z-index: 10; /* Was 2 */"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.fade-in-element {
|
||||||
|
opacity: 0;
|
||||||
|
transition: opacity 2.5s ease-in-out; /* Adjust the duration and easing as needed */
|
||||||
|
}
|
||||||
|
|
||||||
|
.fade-in-element.fade-in {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
<noscript>
|
||||||
|
<style>
|
||||||
|
.fade-in-element {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</style>
|
||||||
|
</noscript>
|
||||||
|
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
.app {
|
.app {
|
||||||
background:linear-gradient(135deg, #820622 10%, #4e2e82 100%, #725965 100%);
|
background:linear-gradient(135deg, #820622 10%, #4e2e82 100%, #725965 100%);
|
||||||
|
@ -407,7 +427,7 @@ z-index: 10; /* Was 2 */"
|
||||||
<a href="https://war.ukraine.ua/donate/"> Donate to Ukrainian people </a>
|
<a href="https://war.ukraine.ua/donate/"> Donate to Ukrainian people </a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="content">
|
<div class="content fade-in-element" >
|
||||||
|
|
||||||
<div class="content-inner" style="padding: 1em;color:#fff;background: none;border-radius: inherit;position: absolute;">
|
<div class="content-inner" style="padding: 1em;color:#fff;background: none;border-radius: inherit;position: absolute;">
|
||||||
<br>
|
<br>
|
||||||
|
@ -424,6 +444,12 @@ z-index: 10; /* Was 2 */"
|
||||||
|
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
||||||
|
document.addEventListener("DOMContentLoaded", function () {
|
||||||
|
var elementToFadeIn = document.querySelector(".fade-in-element");
|
||||||
|
elementToFadeIn.classList.add("fade-in");
|
||||||
|
});
|
||||||
|
|
||||||
if(localStorage.getItem("wttrdsbl") === "true") {
|
if(localStorage.getItem("wttrdsbl") === "true") {
|
||||||
var k = ".wttr {display:flex !important; }; nav .right a { visibility: hidden }"
|
var k = ".wttr {display:flex !important; }; nav .right a { visibility: hidden }"
|
||||||
var h = "nav .right a { visibility: hidden }"
|
var h = "nav .right a { visibility: hidden }"
|
||||||
|
|
Loading…
Reference in a new issue