-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·135 lines (127 loc) · 4.16 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Danny Boy</title>
<link href="stylesWindows.css" rel="stylesheet" type="text/css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script
type="text/javascript"
src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.3/jquery-ui.min.js"
></script>
<script type="text/javascript" src="windows.js"></script>
</head>
<body>
<div id="gameWindow">
<!-- Game Window -->
<div id="score" class="score"></div>
<div id="points" class="points"></div>
<div id="timer" class="timer"></div>
<!-- Start screen & Rules -->
<div id="startWindow" class="otherWindows">
<button id="btnStart" class="gameButton">PLAY</button>
<button id="btnInfo" class="gameButton">RULES</button>
</div>
<!-- Orders -->
<img
src="Option3.png"
alt="I want Baked Potato!"
class="dialogue"
id="baked_order"
/>
<img
src="Option2.png"
alt="I want French Fries!"
class="dialogue"
id="frenchFries_order"
/>
<img
src="Option4.png"
alt="I want Jalapeno Potato!"
class="dialogue"
id="jalapeno_order"
/>
<img
src="Option1.png"
alt="I want Curly Potato!"
class="dialogue"
id="curly_order"
/>
<!-- Characters -->
<img
src="customer1.gif"
alt="customer 1"
class="customers"
id="customer1"
/>
<img
src="customer2.gif"
alt="customer 2"
class="customers"
id="customer2"
/>
<img
src="customer3.gif"
alt="customer 3"
class="customers"
id="customer3"
/>
<img
src="customer4.gif"
alt="customer 4"
class="customers"
id="customer4"
/>
<img src="MainCursor.png" id="player" class="player" />
<!-- Potatoes -->
<img src="Baked.png" alt="Baked Potato" class="potatoes" id="baked" />
<img
src="FrenchFries.png"
alt="French Fries"
class="potatoes"
id="frenchFries"
/>
<img
src="Jalapeno.png"
alt="Jalapeno Potato"
class="potatoes"
id="jalapeno"
/>
<img src="Curly.png" alt="Curly Potato" class="potatoes" id="curly" />
<img src="MainCursor.png" id="player" class="player" />
<!-- Game over screen -->
<div id="gameOver" class="otherWindows">
<button id="btnReset" class="gameButton">START OVER</button>
<button id="btnBackStart" class="gameButton">INTRO</button>
</div>
<div id="infoScreen" class="otherWindows">
<button id="btnBack" class="gameButton">BACK</button>
</div>
<!-- Winner screen -->
<div id="winner" class="otherWindows">
<button id="btnIntro" class="gameButton">INTRO</button>
<button id="btnNext" class="gameButton">NEXT</button>
</div>
<div id="infoScreen" class="otherWindows">
<button id="btnBack" class="gameButton">BACK</button>
</div>
<!-- Next level screen -->
<div id="nextLevel" class="otherWindows">
<div id="score2" class="score"></div>
<div id="points2" class="points">50</div>
<div id="timer2" class="timer"></div>
</div>
<div id="infoScreen" class="otherWindows">
<button id="btnBack" class="gameButton">BACK</button>
</div>
</div>
</body>
<!--audio-->
<audio src="sound/Stage1.mp3" type="audio/mpeg" id="bgnMusic"></audio>
<audio src="sound/GameOver.mp3" type="audio/mpeg" id="endMusic"></audio>
<audio src="sound/startScreen.mp3" type="audio/mpeg" id="infoMusic"></audio>
<audio src="sound/Stage2.mp3" type="audio/mpeg" id="stage2Music"></audio>
<audio src="sound/Winner.mp3" type="audio/mpeg" id="winnerMusic"></audio>
<audio src="sound/fail.mp3" type="audio/mpeg" id="fail"></audio>
<audio src="sound/point.mp3" type="audio/mpeg" id="point"></audio>
</html>