From 693242b8fe66088c87d0b47c2efbafb72292d639 Mon Sep 17 00:00:00 2001 From: TheErrorExe <161362055+TheErrorExe@users.noreply.github.com> Date: Mon, 6 Jan 2025 19:28:32 +0100 Subject: [PATCH] Update index.html --- index.html | 25 +++++++------------------ 1 file changed, 7 insertions(+), 18 deletions(-) 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); }