-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
91 lines (75 loc) · 2.08 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
//! getting and setting elements and colours needed
let boxes = document.querySelector(".boxes");
let colours = [
"red",
"violet",
"pink",
"orange",
"olive",
"chartreuse",
"chocolate",
"indigo",
"crimson",
"skyblue",
];
let colorlist = [...colours, ...colours];
// console.log(colorlist);
let boxlength = colorlist.length;
// console.log(boxlength);
//! initializing the main elements of game
let revealCount = 0;
let activeBox = null;
let waitingTime = false;
//! function to display boxes in the page
function boxBuild(color) {
let box = document.createElement("div");
box.innerText = "Click to view ➡️";
box.classList.add("box");
box.setAttribute("data-color", color);
box.setAttribute("data-revealed", "false");
box.addEventListener("click", () => {
if (waitingTime ) {
//!waiting time
return;
}
box.style.backgroundColor = color;
if (!activeBox) {
//!not a active box (i.e active box initially null)
activeBox = box;
return;
}
console.log(activeBox);
//! Logic for matching colour
let matchingColor = activeBox.getAttribute("data-color");
if (matchingColor == color) {
activeBox.setAttribute("data-revealed","true");
box.setAttribute("data-revealed","true");
activeBox = null;
waitingTime = null;
revealCount += 2;
if (revealCount == boxlength) {
alert("Hurrahhh 🥳🍾 YOU WON ⭐refresh to play again");
}
return;
}
//! changing waitingtime into true and using that for transition
waitingTime = true;
setTimeout(() => {
box.style.backgroundColor = null;
activeBox.style.backgroundColor = null;
waitingTime = false;
activeBox = null;
}, 1500);
});
return box;
}
//! building the boxes of the game
for (let i = 0; i < boxlength; i++) {
let randomIndex = Math.floor(Math.random() * colorlist.length);
let color = colorlist[randomIndex];
let build = boxBuild(color);
//! Using splice method to avoid extra switch
colorlist.splice(randomIndex, 1);
boxes.append(build);
console.log(color);
}