-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
453 lines (417 loc) · 15.7 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
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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
$(document).ready(function() {
console.log( "ready!" );
var user;
var score;
var finalScore;
//begin with all questions disabled DONE
$(".cards div").css("pointer-events", "none")
$("#highScore").css("pointer-events", "none")
//add click listeners to the new game button DONE
$("#newGame").click(function(){
console.log("New Game")
//when new game is clicked, prompt the user to enter their name DONE
user = prompt("Please enter your name")
//add short game description and instructions
alert("Hi " + user + ", when you're ready, click the first box to begin. Please type a,b, or c to input your answer")
//reset box color, click state, and score
$(".cards div").css("background-color", "lemonchiffon")
$(".cards div").css("pointer-events", "none")
$(".cards div").eq(0).css("pointer-events", "auto")
score = 0;
finalScore = 0;
$("#score").eq(0).html("Score: " + score);
})
// var ranking = function( user, finalScore){
// this.name = user
// this.score = finalScore
// }
//
// //high score table
// $("#highScore").click(function(){
// var ranking1 = new ranking(user, finalScore)
// alert(ranking1.name + "'s score is " + ranking1.score)
// })
$("#highScore").click(function(){
$("body").css("background-image", "url(http://i.imgur.com/QgJUL.gif)")
$("body").css("background-color", " ")
$("body").css("background-repeat", "repeat")
$("body").css("height", "800px")
$("body").css("width", "auto")
$(".cards div").css("display", "none")
alert("SURPRISE!")
})
//add click listeners to each card DONE
//prompt a question when a card is clicked DONE
//allow only the first question to be enabled after new game DONE
//add 1 to the score if question is correctly answered DONE
//allow each question in order after the preceding question has been answered DONE
$(".cards div").eq(0).click(function(){
var question0 = prompt("Is Pluto a planet? (yes/no)")
if (question0.toLowerCase() == "b") {
alert("Correct!")
//turn the box green
$(".cards div").eq(0).css("background-color", "chartreuse")
//increase score by 1
score = score + 1
$("#score").eq(0).html("Score: " + score);
//turn off the box
$(".cards div").eq(0).css("pointer-events", "none")
//enable the next box
$(".cards div").eq(1).css("pointer-events", "auto")
}
else {
alert("Incorrect.")
//turn the box red
$(".cards div").eq(0).css("background-color", "red")
//turn off the box
$(".cards div").eq(0).css("pointer-events", "none")
//enable the next box
$(".cards div").eq(1).css("pointer-events", "auto")
}
})
$(".cards div").eq(1).click(function(){
var question1 = prompt("Should you run from or fight a black bear? \n (run/fight)")
if (question1.toLowerCase() == "b") {
alert("Correct!")
//turn the box green
$(".cards div").eq(1).css("background-color", "chartreuse")
//increase score by 1
score = score + 1
$("#score").eq(0).html("Score: " + score);
//turn off the box
$(".cards div").eq(1).css("pointer-events", "none")
//enable the next box
$(".cards div").eq(2).css("pointer-events", "auto")
}
else {
alert("Incorrect.")
//turn the box red
$(".cards div").eq(1).css("background-color", "red")
//turn off the box
$(".cards div").eq(1).css("pointer-events", "none")
//enable the next bx
$(".cards div").eq(2).css("pointer-events", "auto")
}
})
$(".cards div").eq(2).click(function(){
var question2 = prompt("Will a 12 lb bowling ball sink or float in the ocean? \n (sink/float)")
if (question2.toLowerCase() == "b") {
alert("Correct!")
//turn the box green
$(".cards div").eq(2).css("background-color", "chartreuse")
//increase score by 1
score = score + 1
$("#score").eq(0).html("Score: " + score);
//turn off the box
$(".cards div").eq(2).css("pointer-events", "none")
//enable the next box
$(".cards div").eq(3).css("pointer-events", "auto")
}
else {
alert("Incorrect.")
//turn the box red
$(".cards div").eq(2).css("background-color", "red")
//turn off the box
$(".cards div").eq(2).css("pointer-events", "none")
//enable the next box
$(".cards div").eq(3).css("pointer-events", "auto")
}
})
$(".cards div").eq(3).click(function(){
var question3 = prompt("Middle age alchemists wanted to turn lead into what metal? \n (silver/gold/platinum)")
if (question3.toLowerCase() == "b") {
alert("Correct!")
//turn the box green
$(".cards div").eq(3).css("background-color", "chartreuse")
//increase score by 1
score = score + 1
$("#score").eq(0).html("Score: " + score);
//turn off the box
$(".cards div").eq(3).css("pointer-events", "none")
//enable the next box
$(".cards div").eq(4).css("pointer-events", "auto")
}
else {
alert("Incorrect.")
//turn the box red
$(".cards div").eq(3).css("background-color", "red")
//turn off the box
$(".cards div").eq(3).css("pointer-events", "none")
//enable the next box
$(".cards div").eq(4).css("pointer-events", "auto")
}
})
$(".cards div").eq(4).click(function(){
var question4 = prompt("If someone is tripping, they are doing what? \n (drugs/falling down/acting foolish)")
if (question4.toLowerCase() == "a") {
alert("Correct!")
//turn the box green
$(".cards div").eq(4).css("background-color", "chartreuse")
//increase score by 1
score = score + 1
$("#score").eq(0).html("Score: " + score);
//turn off the box
$(".cards div").eq(4).css("pointer-events", "none")
//enable the next box
$(".cards div").eq(5).css("pointer-events", "auto")
}
else {
alert("Incorrect.")
//turn the box red
$(".cards div").eq(4).css("background-color", "red")
//turn off the box
$(".cards div").eq(4).css("pointer-events", "none")
//enable the next box
$(".cards div").eq(5).css("pointer-events", "auto")
}
})
$(".cards div").eq(5).click(function(){
var question5 = prompt("In the TV show Breaking Bad, what was the name of the fast-food chain Walter White frequently visits? \n (los pollos hermanos/hank's subs/la cantina)")
if (question5.toLowerCase() == "a") {
alert("Correct!")
//turn the box green
$(".cards div").eq(5).css("background-color", "chartreuse")
//increase score by 1
score = score + 1
$("#score").eq(0).html("Score: " + score);
//turn off the box
$(".cards div").eq(5).css("pointer-events", "none")
//enable the next box
$(".cards div").eq(6).css("pointer-events", "auto")
}
else {
alert("Incorrect.")
//turn the box red
$(".cards div").eq(5).css("background-color", "red")
//turn off the box
$(".cards div").eq(5).css("pointer-events", "none")
//enable the next box
$(".cards div").eq(6).css("pointer-events", "auto")
}
})
$(".cards div").eq(6).click(function(){
var question6 = prompt("Finish this sentence: liquor before beer, you're in the clear; beer before liquor, \n (never been sicker/that's the kicker/you're a city slicker)")
if (question6.toLowerCase() == "a") {
alert("Correct!")
//turn the box green
$(".cards div").eq(6).css("background-color", "chartreuse")
//increase score by 1
score = score + 1
$("#score").eq(0).html("Score: " + score);
//turn off the box
$(".cards div").eq(6).css("pointer-events", "none")
//enable the next box
$(".cards div").eq(7).css("pointer-events", "auto")
}
else {
alert("Incorrect.")
//turn the box red
$(".cards div").eq(6).css("background-color", "red")
//turn off the box
$(".cards div").eq(6).css("pointer-events", "none")
//enable the next box
$(".cards div").eq(7).css("pointer-events", "auto")
}
})
$(".cards div").eq(7).click(function(){
var question7 = prompt("Who is Magic Mike \n (a man/a myth/a legend)")
if (question7.toLowerCase() == "c") {
alert("Correct!")
//turn the box green
$(".cards div").eq(7).css("background-color", "chartreuse")
//increase score by 1
score = score + 1
$("#score").eq(0).html("Score: " + score);
//turn off the box
$(".cards div").eq(7).css("pointer-events", "none")
//enable the next box
$(".cards div").eq(8).css("pointer-events", "auto")
}
else {
alert("Incorrect.")
//turn the box red
$(".cards div").eq(7).css("background-color", "red")
//turn off the box
$(".cards div").eq(7).css("pointer-events", "none")
//enable the next box
$(".cards div").eq(8).css("pointer-events", "auto")
}
})
$(".cards div").eq(8).click(function(){
var question8 = prompt("Who's your favorite band? \n (nicki minaj/you've probably never heard of them/aerosmith)")
if (question8.toLowerCase() == "b") {
alert("Correct!")
//turn the box green
$(".cards div").eq(8).css("background-color", "chartreuse")
//increase score by 1
score = score + 1
$("#score").eq(0).html("Score: " + score);
//turn off the box
$(".cards div").eq(8).css("pointer-events", "none")
//enable the next box
$(".cards div").eq(9).css("pointer-events", "auto")
}
else {
alert("Incorrect.")
//turn the box red
$(".cards div").eq(8).css("background-color", "red")
//turn off the box
$(".cards div").eq(8).css("pointer-events", "none")
//enable the next box
$(".cards div").eq(9).css("pointer-events", "auto")
}
})
$(".cards div").eq(9).click(function(){
var question9 = prompt("How many problems do you have? \n (99 but a bitch ain't one/don't worry about a thing/too many problems, oh why am I here)")
if (question9.toLowerCase() == "a") {
alert("Correct!")
//turn the box green
$(".cards div").eq(9).css("background-color", "chartreuse")
//increase score by 1
score = score + 1
$("#score").eq(0).html("Score: " + score);
//turn off the box
$(".cards div").eq(9).css("pointer-events", "none")
//enable the next box
$(".cards div").eq(10).css("pointer-events", "auto")
}
else {
alert("Incorrect.")
//turn the box red
$(".cards div").eq(9).css("background-color", "red")
//turn off the box
$(".cards div").eq(9).css("pointer-events", "none")
//enable the next box
$(".cards div").eq(10).css("pointer-events", "auto")
}
})
$(".cards div").eq(10).click(function(){
var question10 = prompt("If you give a mouse a cookie \n (he will be your loyal sidekick/all his friends will want one too/he will ask if you have a cigarette instead)")
if (question10.toLowerCase() == "b") {
alert("Correct!")
//turn the box green
$(".cards div").eq(10).css("background-color", "chartreuse")
//increase score by 1
score = score + 1
$("#score").eq(0).html("Score: " + score);
//turn off the box
$(".cards div").eq(10).css("pointer-events", "none")
//enable the next box
$(".cards div").eq(11).css("pointer-events", "auto")
}
else {
alert("Incorrect.")
//turn the box red
$(".cards div").eq(10).css("background-color", "red")
//turn off the box
$(".cards div").eq(10).css("pointer-events", "none")
//enable the next box
$(".cards div").eq(11).css("pointer-events", "auto")
}
})
$(".cards div").eq(11).click(function(){
var question11 = prompt("Has anyone really been far even as decided to use even go want to do look more like? \n (yes/only on the weekend/wtf)")
if (question11.toLowerCase() == "c") {
alert("Correct!")
//turn the box green
$(".cards div").eq(11).css("background-color", "chartreuse")
//increase score by 1
score = score + 1
$("#score").eq(0).html("Score: " + score);
//turn off the box
$(".cards div").eq(11).css("pointer-events", "none")
//enable the next box
$(".cards div").eq(12).css("pointer-events", "auto")
}
else {
alert("Incorrect.")
//turn the box red
$(".cards div").eq(11).css("background-color", "red")
//turn off the box
$(".cards div").eq(11).css("pointer-events", "none")
//enable the next box
$(".cards div").eq(12).css("pointer-events", "auto")
}
})
$(".cards div").eq(12).click(function(){
var question12 = prompt("In America you search google. In Soviet Russia, \n (they don't have internet/google searches you/it is snowy, snowy day)")
if (question12.toLowerCase() == "b") {
alert("Correct!")
//turn the box green
$(".cards div").eq(12).css("background-color", "chartreuse")
//increase score by 1
score = score + 1
$("#score").eq(0).html("Score: " + score);
//turn off the box
$(".cards div").eq(12).css("pointer-events", "none")
//enable the next box
$(".cards div").eq(13).css("pointer-events", "auto")
}
else {
alert("Incorrect.")
//turn the box red
$(".cards div").eq(12).css("background-color", "red")
//turn off the box
$(".cards div").eq(12).css("pointer-events", "none")
//enable the next box
$(".cards div").eq(13).css("pointer-events", "auto")
}
})
$(".cards div").eq(13).click(function(){
var question13 = prompt("What's the worst of these things? \n (lung cancer/poverty/when your golf glove wears faster over the calluses your tennis racquet gives you)")
if (question13.toLowerCase() == "c") {
alert("Correct!")
//turn the box green
$(".cards div").eq(13).css("background-color", "chartreuse")
//increase score by 1
score = score + 1
$("#score").eq(0).html("Score: " + score);
//turn off the box
$(".cards div").eq(13).css("pointer-events", "none")
//enable the next box
$(".cards div").eq(14).css("pointer-events", "auto")
}
else {
alert("Incorrect.")
//turn the box red
$(".cards div").eq(13).css("background-color", "red")
//turn off the box
$(".cards div").eq(13).css("pointer-events", "none")
//enable the next box
$(".cards div").eq(14).css("pointer-events", "auto")
}
})
$(".cards div").eq(14).click(function(){
var question14 = prompt("What is America famous for? \n (freedom/fat people/spray cheese)")
if (question14.toLowerCase() == "c") {
alert("Correct!")
//turn the box green
$(".cards div").eq(14).css("background-color", "chartreuse")
//increase score by 1
finalScore = score + 1
$("#score").eq(0).html("Score: " + finalScore);
//turn off the box
$(".cards div").eq(14).css("pointer-events", "none")
//display your final score
alert("Thanks for playing. \n Your final score is " + finalScore + " out of 15. \n The surprise button has been activated.")
$("#highScore").css("pointer-events", "auto")
}
else {
alert("Incorrect.")
//turn the box red
$(".cards div").eq(14).css("background-color", "red")
//turn off the box
$(".cards div").eq(14).css("pointer-events", "none")
// display your final score
finalScore = score
$("#score").eq(0).html("Score: " + finalScore);
alert("Thanks for playing. \n Your final score is " + finalScore + " out of 15. \n The surprise button has been activated.")
$("#highScore").css("pointer-events", "auto")
}
})
});
//if question is answered correctly, display congratulatory message and increase score by 1 DONE
//if question is answered incorrectly, display disapproving message and do not increase the score DONE
//alert results when all questions have been answered DONE
//////////Icebox///////////
//create button to alert a table of high scores//