-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
258 lines (231 loc) · 16.2 KB
/
index.html
File metadata and controls
258 lines (231 loc) · 16.2 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- change to whatever you want -->
<title>Penguin Playground</title>
<link rel="stylesheet" href="style.css">
<link href="https://cdn.jsdelivr.net/npm/@yaireo/tagify/dist/tagify.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/@yaireo/tagify"></script>
</head>
<body>
<header>
<h1 class="title">Penguin Playground</h1>
</header>
<div class="filter-container">
<div class="dropdown-button">
<h4>Platform</h4>
<div class="platform-content">
<ul class="checkbox-list">
<li><input type="checkbox" id="NES" name="NES" value="NES"><label for="NES"> NES</label></li>
<li><input type="checkbox" id="SNES" name="SNES" value="SNES"><label for="SNES"> SNES</label></li>
<li><input type="checkbox" id="N64" name="N64" value="N64"><label for="N64"> Nintendo 64</label></li>
<li><input type="checkbox" id="GC" name="GC" value="GC"><label for="GC"> Game Cube</label></li>
<li><input type="checkbox" id="GB" name="GB" value="GB"><label for="GB"> Game Boy</label></li>
<li><input type="checkbox" id="GBA" name="GBA" value="GBA"><label for="GBA"> Game Boy Advanced</label></li>
<li><input type="checkbox" id="DS" name="DS" value="DS"><label for="DS"> DS</label></li>
<li><input type="checkbox" id="3DS" name="3DS" value="3DS"><label for="3DS"> 3DS</label></li>
<li><input type="checkbox" id="Wii" name="Wii" value="Wii"><label for="Wii"> Wii</label></li>
<li><input type="checkbox" id="WiiU" name="WiiU" value="WiiU"><label for="WiiU"> Wii U</label></li>
<li><input type="checkbox" id="PS2" name="PS2" value="PS2"><label for="PS2"> PS2</label></li>
<li><input type="checkbox" id="PS3" name="PS3" value="PS3"><label for="PS3"> PS3</label></li>
<li><input type="checkbox" id="PS4" name="PS4" value="PS4"><label for="PS4"> PS4</label></li>
<li><input type="checkbox" id="PS" name="PS" value="PS"><label for="PS"> PS</label></li>
<li><input type="checkbox" id="PSP" name="PSP" value="PSP"><label for="PSP"> Playstation Portable</label></li>
<li><input type="checkbox" id="PSV" name="PSV" value="PSV"><label for="PSV"> Playstation Vita</label></li>
<li><input type="checkbox" id="X360" name="X360" value="X360"><label for="X360"> Xbox 360</label></li>
<li><input type="checkbox" id="XOne" name="XOne" value="XOne"><label for="XOne"> Xbox One</label></li>
<li><input type="checkbox" id="XB" name="XB" value="XB"><label for="XB"> XB</label></li>
<li><input type="checkbox" id="GEN" name="GEN" value="GEN"><label for="GEN"> Sega Genesis</label></li>
<li><input type="checkbox" id="SAT" name="SAT" value="SAT"><label for="SAT"> Sega Saturn</label></li>
<li><input type="checkbox" id="DC" name="DC" value="DC"><label for="DC"> Sega Dreamcast</label></li>
<li><input type="checkbox" id="SCD" name="SCD" value="SCD"><label for="SCD"> Sega CD</label></li>
<li><input type="checkbox" id="GG" name="GG" value="GG"><label for="GG"> Sega Game Gear</label></li>
<li><input type="checkbox" id="PC" name="PC" value="PC"><label for="PC"> PC</label></li>
<li><input type="checkbox" id="2600" name="2600" value="2600"><label for="2600"> Atari 2600</label></li>
<li><input type="checkbox" id="WS" name="WS" value="WS"><label for="WS"> WonderSwan</label></li>
<li><input type="checkbox" id="TG16" name="TG16" value="TG16"><label for="TG16"> TurboGrafx-16</label></li>
<li><input type="checkbox" id="TG16" name="TG16" value="TG16"><label for="TG16"> TurboGrafx-16</label></li>
<li><input type="checkbox" id="3DO" name="3DO" value="3DO"><label for="3DO"> Panasonic 3DO</label></li>
<li><input type="checkbox" id="PCFX" name="PCFX" value="PCFX"><label for="PCFX"> NEC PC-FX</label></li>
</ul>
</div>
</div>
<div class="dropdown-button">
<h4>Genre</h4>
<div class="genre-content">
<ul class="checkbox-list">
<li><input type="checkbox" id="Sports" name="Sports" value="Sports"><label for="Sports"> Sports</label></li>
<li><input type="checkbox" id="Platform" name="Platform" value="Platform"><label for="Platform"> Platform</label></li>
<li><input type="checkbox" id="Racing" name="Racing" value="Racing"><label for="Racing"> Racing</label></li>
<li><input type="checkbox" id="Role-Playing" name="Role-Playing" value="Role-Playing"><label for="Role-Playing"> Role Playing</label></li>
<li><input type="checkbox" id="Puzzle" name="Puzzle" value="Puzzle"><label for="Puzzle"> Puzzle</label></li>
<li><input type="checkbox" id="Shooter" name="Shooter" value="Shooter"><label for="Shooter"> Shooter</label></li>
<li><input type="checkbox" id="Simulation" name="Simulation" value="Simulation"><label for="Simulation"> Simulation</label></li>
<li><input type="checkbox" id="Action" name="Action" value="Action"><label for="Action"> Action</label></li>
<li><input type="checkbox" id="Fighting" name="Fighting" value="Fighting"><label for="Fighting"> Fighting</label></li>
<li><input type="checkbox" id="Adventure" name="Adventure" value="Adventure"><label for="Adventure"> Adventure</label></li>
<li><input type="checkbox" id="Strategy" name="Strategy" value="Strategy"><label for="Strategy"> Strategy</label></li>
<li><input type="checkbox" id="Misc" name="Misc" value="Misc"><label for="Misc"> Misc</label></li>
</ul>
</div>
</div>
<div class="dropdown-button">
<h4>Year</h4>
<div class="year-content">
<ul class="checkbox-list">
<li><input type="checkbox" id="1980" name="1980" value="1980"><label for="1980"> 1980</label></li>
<li><input type="checkbox" id="1981" name="1981" value="1981"><label for="1981"> 1981</label></li>
<li><input type="checkbox" id="1982" name="1982" value="1982"><label for="1982"> 1982</label></li>
<li><input type="checkbox" id="1983" name="1983" value="1983"><label for="1983"> 1983</label></li>
<li><input type="checkbox" id="1984" name="1984" value="1984"><label for="1984"> 1984</label></li>
<li><input type="checkbox" id="1985" name="1985" value="1985"><label for="1985"> 1985</label></li>
<li><input type="checkbox" id="1986" name="1986" value="1986"><label for="1986"> 1986</label></li>
<li><input type="checkbox" id="1987" name="1987" value="1987"><label for="1987"> 1987</label></li>
<li><input type="checkbox" id="1988" name="1988" value="1988"><label for="1988"> 1988</label></li>
<li><input type="checkbox" id="1989" name="1989" value="1989"><label for="1989"> 1989</label></li>
<li><input type="checkbox" id="1990" name="1990" value="1990"><label for="1990"> 1990</label></li>
<li><input type="checkbox" id="1991" name="1991" value="1991"><label for="1991"> 1991</label></li>
<li><input type="checkbox" id="1992" name="1992" value="1992"><label for="1992"> 1992</label></li>
<li><input type="checkbox" id="1993" name="1993" value="1993"><label for="1993"> 1993</label></li>
<li><input type="checkbox" id="1994" name="1994" value="1994"><label for="1994"> 1994</label></li>
<li><input type="checkbox" id="1995" name="1995" value="1995"><label for="1995"> 1995</label></li>
<li><input type="checkbox" id="1996" name="1996" value="1996"><label for="1996"> 1996</label></li>
<li><input type="checkbox" id="1997" name="1997" value="1997"><label for="1997"> 1997</label></li>
<li><input type="checkbox" id="1998" name="1998" value="1998"><label for="1998"> 1998</label></li>
<li><input type="checkbox" id="1999" name="1999" value="1999"><label for="1999"> 1999</label></li>
<li><input type="checkbox" id="2000" name="2000" value="2000"><label for="2000"> 2000</label></li>
<li><input type="checkbox" id="2001" name="2001" value="2001"><label for="2001"> 2001</label></li>
<li><input type="checkbox" id="2002" name="2002" value="2002"><label for="2002"> 2002</label></li>
<li><input type="checkbox" id="2003" name="2003" value="2003"><label for="2003"> 2003</label></li>
<li><input type="checkbox" id="2004" name="2004" value="2004"><label for="2004"> 2004</label></li>
<li><input type="checkbox" id="2005" name="2005" value="2005"><label for="2005"> 2005</label></li>
<li><input type="checkbox" id="2006" name="2006" value="2006"><label for="2006"> 2006</label></li>
<li><input type="checkbox" id="2007" name="2007" value="2007"><label for="2007"> 2007</label></li>
<li><input type="checkbox" id="2008" name="2008" value="2008"><label for="2008"> 2008</label></li>
<li><input type="checkbox" id="2009" name="2009" value="2009"><label for="2009"> 2009</label></li>
<li><input type="checkbox" id="2010" name="2010" value="2010"><label for="2010"> 2010</label></li>
<li><input type="checkbox" id="2011" name="2011" value="2011"><label for="2011"> 2011</label></li>
<li><input type="checkbox" id="2012" name="2012" value="2012"><label for="2012"> 2012</label></li>
<li><input type="checkbox" id="2013" name="2013" value="2013"><label for="2013"> 2013</label></li>
<li><input type="checkbox" id="2014" name="2014" value="2014"><label for="2014"> 2014</label></li>
<li><input type="checkbox" id="2015" name="2015" value="2015"><label for="2015"> 2015</label></li>
<li><input type="checkbox" id="2016" name="2016" value="2016"><label for="2016"> 2016</label></li>
<li><input type="checkbox" id="2017" name="2017" value="2017"><label for="2017"> 2017</label></li>
<li><input type="checkbox" id="2018" name="2018" value="2018"><label for="2018"> 2018</label></li>
<li><input type="checkbox" id="2019" name="2019" value="2019"><label for="2019"> 2019</label></li>
<li><input type="checkbox" id="2020" name="2020" value="2020"><label for="2020"> 2020</label></li>
</ul>
</div>
</div>
<div class="dropdown-button">
<h4>Rating</h4>
<div class="rating-content">
<ul class="checkbox-list">
<li><input type="checkbox" id="E" name="E" value="E"><label for="E"> E: Everyone</label></li>
<li><input type="checkbox" id="EC" name="EC" value="EC"><label for="EC"> EC: Early Childhood</label></li>
<li><input type="checkbox" id="KA" name="KA" value="KA"><label for="KA"> KA: Kids to Adults</label></li>
<li><input type="checkbox" id="E10+" name="E10+" value="E10+"><label for="E10+"> E10+: Everyone 10+</label></li>
<li><input type="checkbox" id="T" value="T"><label for="T"> T: Teen</label></li>
<li><input type="checkbox" id="M" name="M" value="M"><label for="M"> M: Mature</label></li>
<li><input type="checkbox" id="AO" name="AO" value="AO"><label for="AO"> AO: Adults Only</label></li>
<li><input type="checkbox" id="RP" name="RP" value="RP"><label for="RP"> RP: Rating Pending</label></li>
</ul>
</div>
</div>
<div class="dropdown-button">
<h4>Publisher</h4>
<div class="publisher-content">
<input name='tagify-publisher' class='tagify-publisher' placeholder="Search Publishers"/>
</div>
</div>
</div>
<section class="search-and-select">
<div class="game-title">
<p>Title:</p>
<input type="text" name="game-search" placeholder="Search By Title">
</div>
<div class="sort-by">
<p>Sort By:</p>
<select id="sort-by">
<option value="0">None</option>
<option value="best-selling">Best Selling</option>
<option value="critic-score">Critic Score</option>
<option value="user-score">User Score</option>
</select>
</div>
<div class="search-algorithm">
<p id="search-algorithm-p">Search Algorithm: </p>
<select id="search-algorithm">
<option value="DFS">DFS</option>
<option value="BFS">BFS</option>
</select>
</div>
</section>
<div class="filter-button">
<button id="applyBtn"><b>Apply Filters</b></button>
</div>
<div class="number-of-nodes" id="number-of-nodes">
<p class="nodes-visited" id="nodes-visited">Amount of nodes until first hit: 10</p>
</div>
<section id="intro" class="Game-Section">
<h2 class="game-section-info">No Games Listed</h2>
<!-- Put whatever you want here -->
<div id="game-results">
<!-- EXAMPLE GAME ITEMS FOR TESTING
<div class="game-item">
<div class="game-name">
<h3>Mario</h3>
</div>
<div class="game-details">
<div class="left-side">
<p><strong>Platform:</strong> Wii</p>
<p><strong>Year:</strong> 2006</p>
<p><strong>Genre:</strong> Adventure</p>
<p><strong>Publisher:</strong> Nintendo</p>
<p><strong>Developer:</strong> Nintendo</p>
</div>
<div class="right-side">
<p><strong>Global Sales:</strong> 60 million</p>
<p><strong>Critic Score:</strong> 80/100</p>
<p><strong>User Score:</strong> 7/10</p>
<p><strong>Rating:</strong> E</p>
</div>
</div>
</div>
<div class="game-item">
<div class="game-name">
<h3>Wii Sports</h3>
</div>
<div class="game-details">
<div class="left-side">
<p><strong>Platform:</strong> Wii</p>
<p><strong>Year:</strong> 2006</p>
<p><strong>Genre:</strong> Adventure</p>
<p><strong>Publisher:</strong> Nintendo</p>
<p><strong>Developer:</strong> Nintendo</p>
</div>
<div class="right-side">
<p><strong>Global Sales:</strong> 60 million</p>
<p><strong>Critic Score:</strong> 80</p>
<p><strong>User Score:</strong> 70</p>
<p><strong>Rating:</strong> E</p>
</div>
</div>
</div> -->
</div>
</section>
<section class="previous-next-btns">
<div class="previousBtn-container">
<button id="previousBtn"><b>Previous</b></button>
</div>
<div class="nextBtn-container">
<button id="nextBtn"><b>Next</b></button>
</div>
</section>
<script src="https://cdn.jsdelivr.net/npm/@yaireo/tagify"></script>
<script src="AVL.js"></script>
<script src="script.js"></script>
</body>
</html>