From 85348e2f2b766cf4f50fc8c031cb9bd88af25829 Mon Sep 17 00:00:00 2001 From: Klaynight <63601267+Klaynight-dev@users.noreply.github.com> Date: Sun, 26 Nov 2023 21:03:18 +0100 Subject: [PATCH] Update index.html --- index.html | 28 ++++++++++++++++++---------- 1 file changed, 18 insertions(+), 10 deletions(-) diff --git a/index.html b/index.html index 3d65ef1..b649073 100644 --- a/index.html +++ b/index.html @@ -281,12 +281,16 @@

const closeBar = document.getElementById('closeBar'); let width = 100; const interval = setInterval(() => { - width -= 1; - closeBar.style.width = `${width}%`; - }, 50); + width -= 20; // Vous pouvez ajuster la vitesse de la barre de progression ici + closeBar.style.width = `${width}%`; + }, 1000); // La durée totale est de 5 secondes, donc diminuer de 20% toutes les secondes + setTimeout(() => { - clearInterval(interval); - }, 5000); + clearInterval(interval); + notification.classList.add('hidden'); + window.history.replaceState({}, document.title, window.location.pathname); // Supprimer le paramètre de l'URL + }, 5000); // Masquer la notification après 5 secondes + const closeNotification = document.getElementById('closeNotification'); closeNotification.addEventListener('click', () => { @@ -306,12 +310,16 @@

const closeBar = document.getElementById('closeBar'); let width = 100; const interval = setInterval(() => { - width -= 1; - closeBar.style.width = `${width}%`; - }, 50); + width -= 20; // Vous pouvez ajuster la vitesse de la barre de progression ici + closeBar.style.width = `${width}%`; + }, 1000); // La durée totale est de 5 secondes, donc diminuer de 20% toutes les secondes + setTimeout(() => { - clearInterval(interval); - }, 5000); + clearInterval(interval); + notification.classList.add('hidden'); + window.history.replaceState({}, document.title, window.location.pathname); // Supprimer le paramètre de l'URL + }, 5000); // Masquer la notification après 5 secondes + const closeNotification = document.getElementById('closeNotification'); closeNotification.addEventListener('click', () => {