-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathscript.js
More file actions
147 lines (133 loc) · 4.84 KB
/
script.js
File metadata and controls
147 lines (133 loc) · 4.84 KB
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
var playing = false;
var score;
var action;
var time;
var correctans;
var to = false;
document.getElementById ("start").onclick = function() {
if (playing) {
location.reload (); //reload page
document.getElementById ("score_value").innerHTML = 0;
playing = false;
to = false;
}
else {
playing = true;
score = 0;
document.getElementById ("score_value").innerHTML = score;
document.getElementById ("timeremaining").style.display = "block";
time = 60;
document.getElementById ("timeremaininingvalue").innerHTML = 60;
document.getElementById ("start").innerHTML = "Reset Game";
startcountdown ();
generateQnA ();
}
}
function startcountdown () {
action = setInterval (function() {
time--;
document.getElementById ("timeremaininingvalue").innerHTML = time;
if (time == 0) {
clearInterval (action);
document.getElementById ("gameover").style.display = "block";
document.getElementById ("gameover").innerHTML = "GAME OVER! </br>Your score is: " + score;
document.getElementById ("timeremaining").style.display = "none";
document.getElementById ("correct").style.display = "none";
document.getElementById ("wrong").style.display = "none";
to = true;
}
}, 1000);
}
function generateQnA () {
var x = Math.round (Math.random ()*9)+1;
var y = Math.round (Math.random ()*9)+1;
correctans = x*y;
var cbox = Math.round (Math.random ()*3)+1;
document.getElementById ("question").innerHTML = x + "x" + y;
document.getElementById ("choice" + cbox).innerHTML = correctans;
for (var i = 1; i < 5; i++) {
if (i != cbox) {
var wrongans = (Math.round (Math.random ()*9)+1)*(Math.round (Math.random ()*9)+1);
while (wrongans == correctans) {
wrongans = (Math.round (Math.random ()*9)+1)*(Math.round (Math.random ()*9)+1);
}
document.getElementById ("choice" + i).innerHTML =wrongans;
}
}
}
document.getElementById ("choice1").onclick = function () {
if (playing && !to) {
if (this.innerHTML == correctans) {
score++;
document.getElementById ("score_value").innerHTML = score;
document.getElementById ("correct").style.display = "block";
setTimeout (function (){
document.getElementById ("correct").style.display = "none";
}, 1000);
generateQnA ();
}
else {
document.getElementById ("wrong").style.display = "block";
setTimeout (function (){
document.getElementById ("wrong").style.display = "none";
}, 1000);
}
}
}
document.getElementById ("choice2").onclick = function () {
if (playing && !to) {
if (this.innerHTML == correctans) {
score++;
document.getElementById ("score_value").innerHTML = score;
document.getElementById ("correct").style.display = "block";
setTimeout (function (){
document.getElementById ("correct").style.display = "none";
}, 1000);
generateQnA ();
}
else {
document.getElementById ("wrong").style.display = "block";
setTimeout (function (){
document.getElementById ("wrong").style.display = "none";
}, 1000);
}
}
}
document.getElementById ("choice3").onclick = function () {
if (playing && !to) {
if (this.innerHTML == correctans) {
score++;
document.getElementById ("score_value").innerHTML = score;
document.getElementById ("correct").style.display = "block";
setTimeout (function (){
document.getElementById ("correct").style.display = "none";
}, 1000);
generateQnA ();
}
else {
document.getElementById ("wrong").style.display = "block";
setTimeout (function (){
document.getElementById ("wrong").style.display = "none";
}, 1000);
}
}
}
document.getElementById ("choice4").onclick = function () {
if (playing && !to) {
if (this.innerHTML == correctans) {
score++;
document.getElementById ("score_value").innerHTML = score;
document.getElementById ("correct").style.display = "block";
setTimeout (function (){
document.getElementById ("correct").style.display = "none";
}, 1000);
generateQnA ();
}
else {
document.getElementById ("wrong").style.display = "block";
setTimeout (function (){
document.getElementById ("wrong").style.display = "none";
}, 1000);
}
}
}