Cliquez sur la forme bleue pour gagner des points. Vous avez 30 secondes.
+Cliquez sur la forme bleue pour gagner des points.
Score : 0
Chrono : 30s
@@ -114,13 +152,20 @@From 721fba050747d85493cc45cc3526fb8e1464727c Mon Sep 17 00:00:00 2001 From: Klaynight <63601267+Klaynight-dev@users.noreply.github.com> Date: Wed, 27 Sep 2023 21:23:58 +0200 Subject: [PATCH] Update ClickerGame.html MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Ajout d'un bouton "Jouer" qui permet de démarrer le compte à rebours quand on clique dessus - Ajout d'un font grisé - Ajout d'un bouton "Retour Au hub de jeu" - Suppression d'information inutile - Optimisation du programme - Résolution de bug mineur --- ClickerGame.html | 99 ++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 83 insertions(+), 16 deletions(-) diff --git a/ClickerGame.html b/ClickerGame.html index 91f27b5..9a3b7be 100644 --- a/ClickerGame.html +++ b/ClickerGame.html @@ -62,7 +62,6 @@ background-color: #333; padding: 10px; border-radius: 5px; - } #tableau { font-size: 20px; @@ -80,6 +79,46 @@ font-size: 12px; color: #777; } + /* Style pour la boîte modale (popup) */ + .modal { + display: none; + position: fixed; + z-index: 1; + left: 0; + top: 0; + width: 100%; + height: 100%; + overflow: auto; + background-color: rgba(0, 0, 0, 0.7); + border-radius: 10px; + } + .modal-content { + margin: 15% auto; + padding: 20px; + max-width: 400px; + text-align: center; + } + .close { + color: #aaa; + float: right; + font-size: 28px; + font-weight: bold; + cursor: pointer; + } + .close:hover { + color: #000; + } + #play-button { + padding: 10px 20px; + font-size: 30px; + background-color: #333; + color: #fff; + border: none; + cursor: pointer; + } + #play-button:hover { + background-color: #555; + } /* Style pour le bouton "Retour au hub de jeu" */ #return-button { position: fixed; @@ -93,7 +132,6 @@ cursor: pointer; transition: background-color 0.3s; } - #return-button:hover { background-color: #555; } @@ -104,7 +142,7 @@
Cliquez sur la forme bleue pour gagner des points. Vous avez 30 secondes.
+Cliquez sur la forme bleue pour gagner des points.
Score : 0
Chrono : 30s
@@ -114,13 +152,20 @@