Kompletter Umbau mit neuem Background
ToDo: Setzen der Werte
This commit is contained in:
72
index.html
72
index.html
@@ -1,43 +1,53 @@
|
||||
<!DOCTYPE html>
|
||||
<!doctype html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||||
<title>Indiana Jones Hinweis-Tester</title>
|
||||
<link rel="stylesheet" href="styles.css" />
|
||||
<script defer src="script.js"></script>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>Escape Lock</title>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@700;900&display=swap" rel="stylesheet">
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="mainDiv">
|
||||
<div id="mainView">
|
||||
<div class="container">
|
||||
<h1>🪙 Hinweis-Tester 🧭</h1>
|
||||
<input type="text" id="inputBox" placeholder="Gib deinen Hinweis ein..." />
|
||||
<button id="testButton">Teste Hinweis</button>
|
||||
<div id="outputArea"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div style="visibility: collapse;" id="inputView">
|
||||
<div class="container">
|
||||
<h1>Hinweis-Dictionary</h1>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="inputKey">Eingabe (z. B. Codewort):</label>
|
||||
<input type="text" id="inputKey" placeholder="z. B. Tempel" />
|
||||
</div>
|
||||
<div class="escape" id="escape">
|
||||
<!-- Hintergrundbild -->
|
||||
<img class="escape__img" src="back_image_new.jpg" alt="Escape Hintergrund">
|
||||
|
||||
<div class="form-group">
|
||||
<label for="inputValue">Ausgabe (z. B. Hinweistext):</label>
|
||||
<input type="text" id="inputValue" placeholder="z. B. Der Schatz liegt unter dem Stein" />
|
||||
</div>
|
||||
<!-- Interaktive Ebene -->
|
||||
<div class="overlay">
|
||||
<div class="pad" id="pad">
|
||||
<!-- ↑-Buttons -->
|
||||
<button class="coin" data-idx="0" data-dir="up" aria-label="Ziffer 1 erhöhen"></button>
|
||||
<button class="coin" data-idx="1" data-dir="up" aria-label="Ziffer 2 erhöhen"></button>
|
||||
<button class="coin" data-idx="2" data-dir="up" aria-label="Ziffer 3 erhöhen"></button>
|
||||
<button class="coin" data-idx="3" data-dir="up" aria-label="Ziffer 4 erhöhen"></button>
|
||||
|
||||
<button onclick="saveEntry()">Eintrag speichern</button>
|
||||
<!-- Ziffern -->
|
||||
<div class="digit" id="d0">1</div>
|
||||
<div class="digit" id="d1">2</div>
|
||||
<div class="digit" id="d2">3</div>
|
||||
<div class="digit" id="d3">4</div>
|
||||
|
||||
<div id="dictionaryList">
|
||||
<h3>Gespeicherte Hinweise:</h3>
|
||||
<div id="entries"></div>
|
||||
</div>
|
||||
<!-- ↓-Buttons -->
|
||||
<button class="coin" data-idx="0" data-dir="down" aria-label="Ziffer 1 verringern"></button>
|
||||
<button class="coin" data-idx="1" data-dir="down" aria-label="Ziffer 2 verringern"></button>
|
||||
<button class="coin" data-idx="2" data-dir="down" aria-label="Ziffer 3 verringern"></button>
|
||||
<button class="coin" data-idx="3" data-dir="down" aria-label="Ziffer 4 verringern"></button>
|
||||
|
||||
<!-- Öffnen -->
|
||||
<button class="open" id="openBtn" aria-label="Öffnen">
|
||||
<img src="key.png" alt="" />
|
||||
<span class="visually-hidden">Öffnen</span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Erfolg / Nachricht -->
|
||||
<div class="message" id="success">
|
||||
✅ Geschafft! Das Geheimnis ist gelüftet.
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user