diff --git a/scripts/cmd/index.html b/scripts/cmd/index.html deleted file mode 100644 index 3df4d7b..0000000 --- a/scripts/cmd/index.html +++ /dev/null @@ -1,82 +0,0 @@ - - - - Faux Terminal - - - -
- - - - diff --git a/scripts/controller.html b/scripts/controller.html deleted file mode 100644 index 0463ee6..0000000 --- a/scripts/controller.html +++ /dev/null @@ -1,396 +0,0 @@ - - - - - - - - - NES Controller Simulator - - - - - -
- - - -
- - - -
-
- - - - - - - - - - - diff --git a/scripts/egg.js b/scripts/egg.js deleted file mode 100644 index 7b8c64d..0000000 --- a/scripts/egg.js +++ /dev/null @@ -1,29 +0,0 @@ -// Code Konami -const konamiCode = ['ArrowUp', 'ArrowUp', 'ArrowDown', 'ArrowDown', 'ArrowLeft', 'ArrowRight', 'ArrowLeft', 'ArrowRight', 'b', 'a']; -let konamiCodePosition = 0; - -// Écouteur d'événements pour la touche -document.addEventListener('keydown', function (e) { - // Vérifie si la touche correspond au code Konami - if (e.key === konamiCode[konamiCodePosition]) { - konamiCodePosition++; - - // Si le code Konami a été entièrement saisi - if (konamiCodePosition === konamiCode.length) { - // Redirige vers le site spécifié - window.location.href = 'https://eletrixtimeyt.repl.co/scripts/cmd'; - - // Réinitialise la position du code Konami pour permettre les utilisations ultérieures - konamiCodePosition = 0; - } - } else { - // Réinitialise la position si la touche ne correspond pas au code Konami - konamiCodePosition = 0; - } -}); - -//You can re-use the code with credit - -//Koonami Code Example -//Created by eletrixtime -//Website : https://eletrixtimeyt.repl.co \ No newline at end of file diff --git a/scripts/flappybird.html b/scripts/flappybird.html deleted file mode 100644 index e69de29..0000000 diff --git a/scripts/style.css b/scripts/style.css deleted file mode 100644 index b631317..0000000 --- a/scripts/style.css +++ /dev/null @@ -1,23 +0,0 @@ -html { - height: 100%; - width: 100%; -background-color: #000000; - color: blue; - -} - .container { - display: flex; - align-items: center; - justify-content: center; - height: 100vh; - } - .image { - flex: 1; - margin-left: 20px; - max-width: 500px; - max-height: 505px; - } - .text { - flex: 2; - } -