-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTest.html
44 lines (38 loc) · 1.69 KB
/
Test.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="CSS.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hangman The Game</title>
<style>
</style>
</head>
<body>
<h1>Hangman The Game</h1>
<img src="hangmanImage.src" alt="hangmanImage" id="hangmanImage" style="height: 60%; float: left; padding-left: 100px;">
<p id="wordToGuess"></p>
<input type="text" id="guessInput" maxlength="1" placeholder="Guess a letter">
<button id="guessButton">Guess</button>
<script src="hangman.js"></script>
<script>
document.getElementById('guessInput').addEventListener('keydown', (event) => {
if (event.key === 'Enter') {
event.preventDefault();
document.getElementById('guessButton').click();
// Call the updateHangmanImage function with the incorrectAttempts variable from hangmantest.js
updateHangmanImage(incorrectAttempts);
}
});
// Update image based on incorrectAttempts variable
function updateHangmanImage(incorrectAttempts) {
var hangmanImage = document.getElementById('hangmanImage');
hangmanImage.src = "images/Error" + incorrectAttempts + ".png";
}
updateHangmanImage(incorrectAttempts);
</script>
<a href="Seceret.html" style="position: fixed; bottom: 10px; right: 10px;">
<button class="button-48" role="button"><span class="text">Go to Secret Page</span></button>
</a>
</body>
</html>