-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
115 lines (99 loc) · 4.45 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
$("#francisco-lindor-picture").hide();
$("#francisco-lindor-picture").hide();
$("#kyrie-irving-picture").hide();
$(".play-mlb-season").hide();
$(".play-nba-season").hide();
$(".play-wnba-season").hide();
$("#clayton-kershaw-picture").hide();
$("#lebron-kyrie-pic").hide();
$("#jarrett-allen-picture").hide();
$("#curtis-granderson-celebrate").hide();
$(".sabrina-ionescu-picture").hide();
$(".sabrina-ionescu-stephanie-watts").hide();
$("#new-york-liberty-celebrate-picture").hide();
$(".return-home").hide();
//When I click on the Chosen baseball button, the result is that I hide the donovan mitchell picture from the home page by doing: $("#donovan-mitchell-picture").hide().
$(".chosenBaseball").click(function(){
$("#choices").hide();
$("#donovan-mitchell-picture").hide();
$(".picture-description").hide();
$(".content").text("You've been selected to play for the New York Mets. Let's Go New York Mets!");
$("#francisco-lindor-picture").show();
$(".play-mlb-season").show();
});
$(".play-mlb-season").click(function(){
$("#francisco-lindor-picture").hide();
$("#clayton-kershaw-picture").show();
$(".play-mlb-season").hide();
$(".content").text("You're in the World Series facing the Los Angeles Dodgers pitcher named Clayton Kershaw. Try to hit the curveball!");
});
$(".chosenBrooklynNets").click(function(){
//Notes: Below, we do the same thing as doing the hide action
$("#choices").hide();
//Notes: Let's show the text
$(".content").text("You've been selected to play for the Brooklyn Nets. Let's Go Brooklyn Nets!");
$("#donovan-mitchell-picture").hide();
$(".picture-description").hide();
$("#kyrie-irving-picture").show();
$(".play-nba-season").show();
});
$(".chosenNewYorkLiberty").click(function(){
$("#choices").hide();
$(".content").text("You've been selected to play for the New York Liberty. Let's Go New York Liberty!");
$("#donovan-mitchell-picture").hide();
$(".picture-description").hide();
$(".sabrina-ionescu-picture").show();
$(".play-wnba-season").show();
});
$(".play-nba-season").click(function(){
$("#kyrie-irving-picture").hide();
$("#lebron-kyrie-pic").show();
$(".content").text("The Nets are winning by 1 point with 10 seconds left. Lebron James has the ball and he's getting ready to try to score and win the game for the lakers. Double click on the picture to try to block the ball!");
$(".play-nba-season").hide();
});
$(".playing-defense").dblclick(function(){
//Notes: Let's show the text
$("#lebron-kyrie-pic").hide();
$(".content").text("You blocked Lebron James' dunk! The Nets win the NBA championship! ");
$("#jarrett-allen-picture").show();
$(".return-home").show();
});
$("#clayton-kershaw-picture").dblclick(function(){
//Notes: Let's show the text
$("#clayton-kershaw-picture").hide();
$(".content").text("You hit a home run! Mets win the game and the World Series!");
$("#curtis-granderson-celebrate").show();
$(".return-home").show();
});
$(".play-wnba-season").click(function(){
$(".sabrina-ionescu-picture").hide();
$(".play-wnba-season").hide();
$(".sabrina-ionescu-stephanie-watts").show();
$(".content").text("The Chicago Sky are winning by 1 point. Stephanie Watts is playing defense, try your best to score and win the game for the New york Liberty. Double click on the picture to score");
}
);
$(".return-home").click(function(){
//Now we have to hide that restart button that we clicked on(that has the return-home class)
$(".return-home").hide();
/*
$(".play-mlb-season").show();
$(".play-nba-season").show();
*/
$("#choices").show();
$("#donovan-mitchell-picture").show();
$(".picture-description").show();
//Now we'll hide the pictures from the previous step(depending if we chose to play baseball or basketball)
$("#jarrett-allen-picture").hide();
$("#curtis-granderson-celebrate").hide();
//Also I hide some of the more recent pictures that I've added
$(".sabrina-ionescu-picture").hide();
$("#new-york-liberty-celebrate-picture").hide();
$(".content").text("");
});
$(".sabrina-ionescu-stephanie-watts").dblclick(function(){
$(".sabrina-ionescu-stephanie-watts").hide();
//let's show a new picture of the New York Liberty team celebrating
$("#new-york-liberty-celebrate-picture").show();
$(".content").text("You scored the basket! The New York Liberty win the WNBA championship!");
$(".return-home").show();
});