-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
166 lines (143 loc) · 3.98 KB
/
test.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
// console.log("guess number game between 100");
// // let game_num = (Math.random() * 11)+1;
// let game_num = 9;
// let tries=1;
// let input1 = prompt("GUESS THE NUMBER !!!");
// while(game_num != input1) {
// console.log(input1);
// input1 = prompt("GUESS THE NUMBER again plzz !!!");
// tries++;
// }
// console.log(input1);
// console.log("yes you guessed it rigth this time !!!");
// console.log(`You took ${tries} tries`);
// let Fname = prompt("ENTER YOUR FULL NAME ");
// let len = Fname.length;
// let CFname = Fname.toUpperCase();
// let username = `@${CFname}${len}`;
// console.log(`your Username is : ${username}`);
// let arr = [22,60,99,55,78,70,89,48,74,10];
// let sum = 0;
// for (const i of arr) {
// sum+=i;
// }
// let avg = sum/arr.length;
// console.log(`average of whole class is ${avg}`);
// let prices = [250,645,300,900,50];
// let offPrice = 0;
// let idx = 0;
// for (let i of prices) {
// offPrice = i / 10;
// prices[idx] = i - offPrice;
// console.log(prices[idx]);
// idx++;
// }
// let arr = [2,3,6,8,10];
// arr.forEach((val) => {
// console.log(`${val*val}`);
// });
let button = document.createElement("button");
button.innerText = "Play music";
button.style.backgroundColor = "black";
button.style.color = "white";
button.style.padding = "10px";
button.style.fontSize = "25px";
button.style.borderRadius = "15px";
button.style.cursor = "pointer";
// let div = document.querySelector("#container");
// div.style.border = "2px solid red";
let bodytag = document.querySelector("body");
// bodytag.append(button);
// console.log(button);
function playmusic(){
let audio =new Audio("/One Piece Uk Drill Gomu Gomu No Feat Ydee G Ls.mp3");
audio.play();
}
button.addEventListener("dblclick",playmusic);
let gamebox = document.querySelector("#game");
gamebox.after(button);
let boxes = document.querySelectorAll(".btns");
let turnO = true;
boxes.forEach((box) => {
box.addEventListener("click",() =>{
console.log("box clicked");
if(turnO){
box.innerText = "O";
turnO = false;
}
else{
box.innerText = "X";
turnO = true;
}
box.disabled = true;
checkWinner();
})
});
let Winpatterns = [
[0,1,2],
[3,4,5],
[6,7,8],
[0,4,8],
[6,4,2],
[0,3,6],
[1,4,7],
[2,5,8]
];
let disable_Box = () => {
for (let bts of boxes) {
bts.disabled = true;
}
}
let Enable_Box = () => {
for (let bts of boxes) {
bts.disabled = false;
bts.innerText = "";
}
}
let WIN = document.querySelector(".winner_container");
let msg = document.querySelector("#win_tag");
let showWinner = (winner) => {
msg.innerText = `HOORAY !! WINNER IS ${winner}`;
WIN.classList.remove("hide");
disable_Box();
};
let checkWinner = () => {
for(let patterns of Winpatterns){
let val1 = boxes[patterns[0]].innerText;
let val2 = boxes[patterns[1]].innerText;
let val3 = boxes[patterns[2]].innerText;
if (val1!="" && val2!="" && val3!="") {
if(val1===val2 && val2===val3){
showWinner(val1);
}
}
}
checkTie();
};
let checkTie = () => {
let allBoxesFilled = true;
for (let i = 0; i < boxes.length; i++) {
let box = boxes[i];
if (box.innerText === "") {
allBoxesFilled = false;
break;
}
}
if (allBoxesFilled) {
handleTie();
}
};
let handleTie = () => {
console.log("It's a tie! No one wins.");
msg.innerText = "It's a tie! No one wins.";
WIN.classList.remove("hide");
};
let RESET = document.querySelector("#RENEW");
let NEW_GAME = document.querySelector("#RENEW2");
let reseting = () => {
turnO = true;
Enable_Box();
WIN.classList.add("hide");
};
RESET.addEventListener("click",reseting);
NEW_GAME.addEventListener("click",reseting);