-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
246 lines (235 loc) · 6.75 KB
/
main.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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
const questions = [
{
"question": "This is a sample question?",
"a": "a",
"b": "b",
"c": "c",
"d": "d",
},
{
"question": "How many months are there in a year?",
"a": "10",
"b": "12",
"c": "24",
"d": "None of these",
"ans": "12",
},
{
"question": "How many days are there in a week?",
"a": "5",
"b": "15",
"c": "7",
"d": "None of these",
"ans": "7",
},
{
"question": "How many days are there in a year?",
"a": "365",
"b": "356",
"c": "300",
"d": "None of these",
"ans": "365",
},
{
"question": "Which number comes after 15?",
"a": "14",
"b": "15",
"c": "16",
"d": "None of these",
"ans": "16",
},
{
"question": "How many colours are there in a rainbow?",
"a": "5",
"b": "10",
"c": "7",
"d": "None of these",
"ans": "7",
},
{
"question": "We use our ears to ______",
"a": "See",
"b": "Hear",
"c": "Taste",
"d": "None of these",
"ans": "Hear",
},
{
"question": "Name the day that comes after Tuesday?",
"a": "Wednesday",
"b": "Tuesday",
"c": "Thrusday",
"d": "None of these",
"ans": "Wednesday",
},
{
"question": "How many vowels are there in the English alphabet?",
"a": "4",
"b": "5",
"c": "6",
"d": "None of these",
"ans": "5",
},
{
"question": "How many legs does cow have?",
"a": "2",
"b": "6",
"c": "4",
"d": "None of these",
"ans": "4",
},
{
"question": "Which sense organ do you use to smell?",
"a": "Eye",
"b": "Ear",
"c": "Nose",
"d": "Toungue",
"ans": "Nose",
},
{
"question": "Which part of the plant is brown and below the ground?",
"a": "Roots",
"b": "Stem",
"c": "leaves",
"d": "Branch",
"ans": "Roots",
},
{
"question": "Which part of a plant has seeds?",
"a": "Roots",
"b": "Stem",
"c": "leaves",
"d": "Fruit",
"ans": "Fruit",
},
{
"question": "Which bird has a far sight and turns its head all the way round?",
"a": "Owl",
"b": "Bat",
"c": "Pigeon",
"d": "None",
"ans": "Owl",
},
{
"question": "Which animal has a long neck?",
"a": "Bear",
"b": "Fox",
"c": "Zebra",
"d": "Giraffe",
"ans": "Giraffe",
},
{
"question": "Which animal has black and white stripes on its body?",
"a": "Bear",
"b": "Fox",
"c": "Zebra",
"d": "Giraffe",
"ans": "Zebra",
},
{
"question": "Name the shape with five sides?",
"a": "Pentagon",
"b": "Hexatagon",
"c": "Square",
"d": "None",
"ans": "Pentagon",
},
]
const levels = ["₹0", "₹1,000", "₹2,000", "₹3,000", "₹5,000", "₹10,000", "₹20,000", "₹40,000", "₹80,000", "₹160,000", "₹320,000", "₹640,000", "₹1,250,000", "₹2,500,000", "₹5,000,000", "₹1 Crore", "₹7 Crore"]
let level = 1
let money
let questionCount = 0
let isGameStart = false
let coundown;
const container = document.querySelector(".container")
const options = document.getElementsByName("opts")
const btn = document.getElementById("btn")
const timer = document.getElementById("timer")
const question = document.getElementById("question")
const info = document.getElementById("info")
const optA = document.getElementById("opt-a")
const optB = document.getElementById("opt-b")
const optC = document.getElementById("opt-c")
const optD = document.getElementById("opt-d")
const gameOver = () => {
for (let no = 0; no < 4; no++) {
if(options[no])
options[no].disabled = true;
}
}
const startTimer = (sec = 15) => {
coundown = setInterval(() => {
if (sec >= 0)
timer.innerText = `${sec} sec`
else {
clearInterval(coundown);
info.innerHTML = `Time Over! Your Take home money is :<span class="red"> ${money ?? levels[0]} </span>`
gameOver();
}
sec--;
}, 1000)
}
const unchecked = () => {
for (let index = 0; index < 4; index++) {
options[index].checked = false;
}
}
const render = () => {
unchecked();
question.innerText = questions[questionCount].question;
optA.innerText = questions[questionCount].a
options[0].value = questions[questionCount].a
optB.innerText = questions[questionCount].b
options[1].value = questions[questionCount].b
optC.innerText = questions[questionCount].c
options[2].value = questions[questionCount].c
optD.innerText = questions[questionCount].d
options[3].value = questions[questionCount].d
if (isGameStart)
startTimer();
}
btn.addEventListener('click', (e) => {
e.preventDefault();
btn.innerText = "Submit";
clearInterval(coundown);
if (!isGameStart) {
questionCount++;
isGameStart = true;
info.innerHTML = `Welcome ! This question is for : <span class="blue"> ${levels[level]} </span>`;
render();
}
else {
for (let index = 0; index < 4; index++) {
if (options[index].checked) {
if (options[index].value == questions[questionCount].ans) {
if (level-1 == 4 || level-1 == 10 || level-1 == 16)
money = levels[level]
questionCount++;
level++;
if (questionCount<=16) {
info.innerHTML = `Congratulations! you won <span class="blue"> ${levels[level - 1]} </span> <br> This question is for : <span class="blue"> ${levels[level]} </span>`;
render();
}
else {
info.innerText = "CONGRATULATIONS !"
container.innerHTML = ` <div id="won-container">
<p id="won-tab-info"> You Have won a amount </p>
<p id="won-tab-amount">${money}</p>
</div>`
}
}
else {
info.innerHTML = `Thanks For Playing !`;
container.innerHTML = ` <div id="won-container">
<p id="won-tab-info"> Your Take home money is </p>
<p id="won-tab-amount">${money ?? levels[0]}</p>
</div>`
gameOver();
}
break;
}
}
}
}
)
render();