diff --git a/index.html b/index.html index 0753e68..359e971 100644 --- a/index.html +++ b/index.html @@ -1,20 +1,3 @@ - - - @@ -49,6 +32,7 @@ This Website was developed by TheErrorExe for Blockattack. TheErrorExe is and wi transition: all 0.5s ease-in-out; height: 0; overflow: hidden; + transform: scale(0.5); } @@ -135,11 +119,16 @@ This Website was developed by TheErrorExe for Blockattack. TheErrorExe is and wi tntGif.style.display = 'block'; tntBlock.style.display = 'none'; - // Nach 5 Sekunden das GIF verschwinden lassen + // Nach 5 Sekunden das GIF verschwinden lassen und die Seite "fallen" lassen setTimeout(() => { tntGif.style.display = 'none'; document.body.classList.add('collapsed'); // Seite "fällt zusammen" }, 5000); + + // Seite nach 10 Sekunden neu laden + setTimeout(() => { + location.reload(); + }, 10000); }