-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
106 lines (94 loc) · 2.67 KB
/
script.js
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
document.addEventListener("DOMContentLoaded", function () {
let word = document.querySelector(".word"),
text = document.querySelector(".text"),
scoreEl = document.querySelector(".score"),
timeEl = document.querySelector(".time"),
endGameEl = document.querySelector(".end-game"),
settings = document.querySelector(".settings"),
settingForm = document.querySelector(".settings-form"),
difficultyEl = document.querySelector(".difficulty"),
words = [
"apple",
"banana",
"hello",
"mazda",
"orange",
"world",
"cow",
"mango",
"congrats",
"english",
"range rover",
"chris evans",
"iron man",
"captain america",
"javascript",
"python",
"carrot",
],
randomWord,
score = 0,
time = 10,
difficulty =
localStorage.getItem("dif") !== null
? localStorage.getItem("dif")
: "medium",
intervalTimer;
// Function to get a random word
const getRandom = () => {
return words[Math.floor(Math.random() * words.length)];
};
// Function to add a new word and update score and timer
const addWord = () => {
randomWord = getRandom();
word.innerHTML = randomWord;
};
// Interval timer for the countdown
intervalTimer = setInterval(() => {
time--;
timeEl.innerHTML = time + "s";
if (time === 0) {
clearInterval(intervalTimer);
showModal("Time Out", `Your score is ${score}`);
}
}, 1000);
// Initial setup
addWord();
text.focus();
// Event listener for user input
text.addEventListener("input", (e) => {
let insertedText = e.target.value;
if (insertedText == randomWord) {
addWord();
score++;
scoreEl.innerHTML = score;
e.target.value = "";
if (difficulty == "hard") time += 2;
if (difficulty == "medium") time += 3;
if (difficulty == "easy") time += 5;
timeEl.innerHTML = time + "s";
// Clear the interval if the player wins
if (time > 0) {
clearInterval(intervalTimer);
intervalTimer = setInterval(() => {
time--;
timeEl.innerHTML = time + "s";
if (time === 0) {
clearInterval(intervalTimer);
showModal("Time Out", `Your score is ${score}`);
}
}, 1000);
}
}
});
// Event listener for difficulty change
settingForm.addEventListener("change", (e) => {
difficulty = e.target.value;
localStorage.setItem("dif", difficulty);
});
// Function to show a modal
const showModal = (title, content) => {
alert(`${title}\n${content}`);
// You can replace the alert above with your own modal implementation
};
});