-
Notifications
You must be signed in to change notification settings - Fork 1
/
script.js
82 lines (76 loc) · 2.98 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
// Initialize Variables
let bgMusic = new Audio("music.mp3");
let audioTurn = new Audio("ting.mp3");
let correct = new Audio("correct-sound.mp3");
let turn = 'X';
let isGameover = false;
// Function to change the turn
const changeTurn = () => {
return turn === 'X' ? '0' : 'X'
}
// Function to check Winner
const checkWin = () => {
let boxtext = document.getElementsByClassName('boxtext');
let wins = [
[0, 1, 2, 5, 5, 0],
[3, 4, 5, 5, 15, 0],
[6, 7, 8, 5, 25, 0],
[0, 3, 6, -5, 15, 90],
[1, 4, 7, 5, 15, 90],
[2, 5, 8, 15, 15, 90],
[0, 4, 8, 5, 15, 45],
[2, 4, 6, 5, 15, 135],
]
wins.forEach(e => {
if ((boxtext[e[0]].innerText === boxtext[e[1]].innerText) && (boxtext[e[2]].innerText === boxtext[e[1]].innerText) && (boxtext[e[0]].innerText !== '')) {
document.querySelector(".info").innerText = "Player " + boxtext[e[0]].innerText + " Won";
isGameover = true;
document.querySelector(".imgBox").getElementsByTagName("img")[0].style.width = "200px";
document.querySelector(".line").style.width = "20vw";
document.querySelector(".line").style.transform = `translate(${e[3]}vw, ${e[4]}vw) rotate(${e[5]}deg)`;
document.querySelector(".winner").style.display = "flex";
document.querySelector(".confetti").style.opacity = "1";
document.querySelector(".confetti").style.zIndex = "1";
correct.play();
turn = '';
audioTurn.pause();
bgMusic.pause();
}
})
}
// Game Logic Starts from Here
let boxes = document.getElementsByClassName("box");
Array.from(boxes).forEach(element => {
let boxtext = element.querySelector(".boxtext");
element.addEventListener("click", () => {
if (boxtext.innerText === "") {
boxtext.innerText = turn;
turn = changeTurn();
audioTurn.play();
//bgMusic.play();
checkWin();
if (!isGameover) {
document.getElementsByClassName("info")[0].innerText = "Turn for " + turn;
}
}
})
})
// Add onClick listener on Reset Button
reset.addEventListener('click', () => {
let boxtext = document.querySelectorAll(".boxtext");
Array.from(boxtext).forEach(element => {
element.innerText = "";
})
turn = "X";
isGameover = false;
bgMusic.pause();
audioTurn.play();
document.querySelector(".line").style.width = "0vw";
document.getElementsByClassName("info")[0].innerText = "Turn for " + turn;
document.querySelector(".imgBox").getElementsByTagName("img")[0].style.width = "0px";
document.querySelector(".winner").style.display = "none";
document.querySelector(".confetti").style.opacity = "0";
document.querySelector(".confetti").style.zIndex = "-1";
correct.pause();
audioTurn.play();
})