-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathselect.html
More file actions
323 lines (321 loc) · 24.3 KB
/
select.html
File metadata and controls
323 lines (321 loc) · 24.3 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Games</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" href="styles.css" />
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-Q919W0VJ1S"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-Q919W0VJ1S');
</script>
</head>
<body>
<nav>
<button type="button" class="nav-btn" onclick="location.href='/start.html'">
<img src="media/nav-buttons/home.svg" width="40px" height="40px">
</button>
<button type="button" class="nav-btn" aria-current="page" onclick="window.location.href='/select.html'">
<img src="media/nav-buttons/game.svg" width="40px" height="40px">
</button>
<button type="button" class="nav-btn" onclick="location.href='search/index.html'">
<img src="media/nav-buttons/search.svg" width="40px" height="40px">
</button>
<button type="button" class="nav-btn" onclick="location.href='/tools.html'">
<img src="media/nav-buttons/tools.svg" width="40px" height="40px">
</button>
<button type="button" class="nav-btn" onclick="location.href='/settings.html'">
<img src="media/nav-buttons/settings.svg" width="40px" height="40px">
</button>
<button type="button" class="nav-btn" onclick="location.href='/disclaimer.html'">
<img src="media/nav-buttons/disclaimer.svg" width="40px" height="40px">
</button>
</nav>
<div id="games">
<main>
<h1>Games:</h1>
<div class="search-bar-container">
<input
id="game-search"
class="search-bar"
type="text"
placeholder="Look for a game you want..."
autocomplete="off"
oninput="filterGames()"
/>
</div>
<div id="no-results-message" style="display:none; text-align:center; font-family: Ubuntu, sans-serif; color: #099eda; font-size: 1.2em; margin-top: 30px; background: rgba(0,0,0,0.7); border-radius: 12px; padding: 18px 24px; box-shadow: 0 2px 16px #00ffff33;">
No results found. Please use the game suggestion form below. 👇
</div>
<button class="button" id="request" onclick="window.open('https://forms.gle/d8hBcyNGbLXk7cEk9', '_blank')">Game Request Form</button>
Please note that some games are unavailable rn, they'll come back in the coming days.
<div id="game-buttons">
<button class="button" data-title="Fruit Ninja" onclick="window.location.href='pages/game-pages/fruitninja.html'">
<img src="media/buttons/fruit.webp" alt="Fruit Ninja" style="width:130px;height:130px;">
</button>
<button class="button" data-title="1v1.lol" onclick="window.location.href='pages/game-pages/1v1lol.html'">
<img src="media/buttons/1v1.jpeg" alt="1v1.lol" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Taisei Project" onclick="window.location.href='pages/game-pages/taiseiproject.html'">
<img src="media/buttons/taisei.png" alt="Taisei Project" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Metroid Fusion" onclick="window.location.href='pages/game-pages/metroidfusion.html'">
<img src="media/buttons/metroid.jpg" alt="Metroid Fusion" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Celeste" onclick="window.location.href='pages/game-pages/celeste.html'">
<img src="media/buttons/celeste.jpg" alt="Celeste" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Slope" onclick="window.location.href='pages/game-pages/slope.html'">
<img src="media/buttons/slope.jpg" alt="Slope" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Slope Plus" onclick="window.location.href='pages/game-pages/slopeplus.html'">
<img src="media/buttons/slopeplus.png" alt="Slope Plus" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Slope 2 Player" onclick="window.location.href='pages/game-pages/slope2player.html'">
<img src="media/buttons/slope2.png" alt="Slope 2 Player" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Eaglercraft 1.12.2" onclick="window.location.href='pages/game-pages/eaglercraft122html'">
<img src="media/buttons/eagler.png" alt="Eaglercraft 1.12.2" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Mario Combat" onclick="window.location.href='pages/game-pages/mariocombat.html'">
<img src="media/buttons/mariocombat.png" alt="Mario Combat" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Super Mario Bros" onclick="window.location.href='pages/game-pages/supermariobros.html'">
<img src="media/buttons/mariobros.webp" alt="Super Mario Bros" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Mario Kart 64" onclick="window.location.href='pages/game-pages/mariokart64.html'">
<img src="media/buttons/mariokart.jpeg" alt="Mario Kart 64" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Baldi's Basics" onclick="window.location.href='pages/game-pages/baldibasics.html'">
<img src="media/buttons/baldi.png" alt="Baldi's Basics" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Vex" onclick="window.location.href='pages/game-pages/vex.html'">
<img src="media/buttons/vex.png" alt="Vex" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Vex 2" onclick="window.location.href='pages/game-pages/vex2.html'">
<img src="media/buttons/vex2.jpeg" alt="Vex 2" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Vex 3" onclick="window.location.href='pages/game-pages/vex3.html'">
<img src="media/buttons/vex3.png" alt="Vex 3" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Volley Random" onclick="window.location.href='pages/game-pages/volleyrandom.html'">
<img src="media/buttons/volley.png" alt="Volley Random" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Soccer Random" onclick="window.location.href='pages/game-pages/soccerrandom.html'">
<img src="media/buttons/soccer.png" alt="Soccer Random" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Basket Random" onclick="window.location.href='pages/game-pages/basketrandom.html'">
<img src="media/buttons/basket.png" alt="Basket Random" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Boxing Random" onclick="window.location.href='pages/game-pages/boxingrandom.html'">
<img src="media/buttons/boxing.png" alt="Boxing Random" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Nuts" onclick="window.location.href='pages/game-pages/nutsnbolts.html'">
<img src="media/buttons/nuts.png" alt="Nuts" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Cookie Clicker" onclick="window.location.href='pages/game-pages/cookieclicker.html'">
<img src="media/buttons/cookieclicker.jpg" alt="Cookie Clicker" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Super Smash Bros" onclick="window.location.href='pages/game-pages/supersmashbros.html'">
<img src="media/buttons/supersmashbros.jpg" alt="Super Smash Bros" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Soccer Skills World Cup" onclick="window.location.href='pages/game-pages/soccerskills.html'">
<img src="media/buttons/cupofworld.png" alt="Soccer Skills World Cup" style="width:130px;height:130px;">
</button>
<button class="button" data-title="N-Gon" onclick="window.location.href='pages/game-pages/ngon.html'">
<img src="media/buttons/ngon.jpeg" alt="N-Gon" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Drift Hunters" onclick="window.location.href='pages/game-pages/drifthunters.html'">
<img src="media/buttons/drifthunters.jpeg" alt="Drift Hunters" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Subway Surfers" onclick="window.location.href='pages/game-pages/subwaysurferswinterholiday.html'">
<img src="media/buttons/wintersurf.webp" alt="Subway Surfers: Winter Holiday" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Subway Surfers" onclick="window.location.href='pages/game-pages/subwaysurfersmiami.html'">
<img src="media/buttons/subwaymiami.webp" alt="Subway Surfers: Miami" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Rooftop Snipers" onclick="window.location.href='pages/game-pages/rooftopsnipers.html'">
<img src="media/buttons/rooftop.png" alt="Rooftop Snipers" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Rooftop Snipers" onclick="window.location.href='pages/game-pages/rooftopsnipers2.html'">
<img src="media/buttons/rooftop2.jpeg" alt="Rooftop Snipers 2" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Bitlife" onclick="window.location.href='pages/game-pages/bitlife.html'">
<img src="media/buttons/bitlife.png" alt="Bitlife" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Fancy Pants Adventure" onclick="window.location.href='pages/game-pages/fancypantsadventure.html'">
<img src="media/buttons/fancy.png" alt="Fancy Pants Adventure" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Line Rider" onclick="window.location.href='pages/game-pages/linerider.html'">
<img src="media/buttons/linerider.png" alt="Line Rider" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Deltarune" onclick="window.location.href='pages/game-pages/deltarune.html'">
<img src="media/buttons/deltarune.webp" alt="Deltarune" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Unfair Undyne" onclick="window.location.href='pages/game-pages/unfairundyne.html'">
<img src="media/buttons/Undyne_face.webp" alt="Unfair Undyne" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Ultrakill" onclick="window.location.href='pages/game-pages/ultrakill.html'">
<img src="media/buttons/ultrakill.jpeg" alt="Ultrakill" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Pokemon" onclick="window.location.href='pages/game-pages/pokemonfirered.html'">
<img src="media/buttons/pokefire.jpg" alt="Pokemon Fire Red" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Pokemon" onclick="window.location.href='pages/game-pages/pokemonleafgreen.html'">
<img src="media/buttons/leafgreen.jpg" alt="Pokemon Leaf Green" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Pokemon" onclick="window.location.href='pages/game-pages/pokemonunbound.html'">
<img src="media/buttons/pokeunbound.webp" alt="Pokemon Unbound" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Pokemon" onclick="window.location.href='pages/game-pages/pokemonstadium.html'">
<img src="media/buttons/stadium.webp" alt="Pokemon Stadium" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Pokemon" onclick="window.location.href='pages/game-pages/pokemonemerald.html'">
<img src="media/buttons/emerald.jpg" alt="Pokemon Emerald" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Pokemon" onclick="window.location.href='pages/game-pages/pokemonemeraldrg.html'">
<img src="media/buttons/rouge.png" alt="Pokemon Emerald Rogue" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Pokemon" onclick="window.location.href='pages/game-pages/pokemonruby.html'">
<img src="media/buttons/ruby.png" alt="Pokemon Ruby" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Sonic" onclick="window.location.href='pages/game-pages/sonicthehedgehog.html'">
<img src="media/buttons/sonic.jpeg" alt="Sonic the Hedgehog" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Riddle School" onclick="window.location.href='pages/game-pages/riddleschool.html'">
<img src="media/buttons/riddle.jpeg" alt="Riddle School" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Red Ball" onclick="window.location.href='pages/game-pages/redball.html'">
<img src="media/buttons/redball.webp" alt="Red Ball" style="width:130px;height:130px;">
</button>
<button class="button" data-title="OvO" onclick="window.location.href='pages/game-pages/ovo.html'">
<img src="media/buttons/ovo.png" alt="OvO" style="width:130px;height:130px;">
</button>
<button class="button" data-title="OvO 2" onclick="window.location.href='pages/game-pages/ovo2.html'">
<img src="media/buttons/ovo2.webp" alt="OvO 2" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Fifa 11" onclick="window.location.href='pages/game-pages/fifa11.html'">
<img src="media/buttons/fifa11.jpg" alt="Fifa 11" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Funny Shooter 2" onclick="window.location.href='pages/game-pages/funnyshooter2.html'">
<img src="media/buttons/funny-shooter-2.jpg" alt="Funny Shooter 2" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Retro Bowl" onclick="window.location.href='pages/game-pages/retrobowl.html'">
<img src="media/buttons/unnamed.png" alt="Retro Bowl" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Tiny Fishing" onclick="window.location.href='pages/game-pages/tinyfishing.html'">
<img src="media/buttons/tiny-fishing-square-icon.png" alt="Tiny Fishing" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Doom" onclick="window.location.href='pages/game-pages/doom.html'">
<img src="media/buttons/doom.jpeg" alt="Doom" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Among Us" onclick="window.location.href='pages/game-pages/amongus.html'">
<img src="media/buttons/Among_Us.webp" alt="Among Us" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Geometry Dash" onclick="window.location.href='pages/game-pages/geometrydash.html'">
<img src="media/buttons/geometry.png" alt="Geometry Dash" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Geometry Dash Demake" onclick="window.location.href='pages/game-pages/geodashdemake.html'">
<img src="media/buttons/geodashdemake.png" alt="Geometry Dash Demake" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Crossy Roads" onclick="window.location.href='pages/game-pages/crossyroads.html'">
<img src="media/buttons/Crossy_Road_icon.jpeg" alt="Geometry Dash" style="width:130px;height:130px;">
</button>
<button class="button" data-title="MotoX3M" onclick="window.location.href='pages/game-pages/motox3m.html'">
<img src="media/buttons/motox3m.png" alt="MotoX3M" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Omori" onclick="window.location.href='pages/game-pages/omori.html'">
<img src="media/buttons/omori.jpeg" alt="Omori" style="width:130px;height:130px;">
</button>
<button class="button" data-title="Bad Time Simulator" onclick="window.location.href='pages/game-pages/badtimesimulator.html'">
<img src="media/buttons/badtime.webp" alt="Bad Time Simulator" style="width:130px;height:130px;">
</button>
<button class="button" data-title="CSGO Clicker" onclick="window.location.href='pages/game-pages/csgoclicker.html'">
<img src="media/buttons/csgo.jpeg" alt="CSGO Clicker" style="width:130px;height:130px;">
</button>
<!--
<button class="button" data-title="Yume Nikki" onclick="window.location.href='pages/game-pages/yumenikki.html'"">Yume Nikki</button>
<button class="button" data-title="FNF" onclick="window.location.href='pages/game-pages/fnf.html'"">Friday Night Funkin</button>
<button class="button" data-title="Snowbattleio" onclick="window.location.href='pages/game-pages/snowbattle.html'"">Snow Battle IO</button>
<button class="button" data-title="The Legend of Zelda: Ocarina of Time" onclick="window.location.href='pages/game-pages/ocarina.html'"">The Legend of Zelda: Ocarina of Time</button>
<button class="button" data-title="Karlson" onclick="window.location.href='pages/game-pages/karl.html'"">Karlson</button>
<button class="button" data-title="Metal Gear Solid" onclick="window.location.href='pages/game-pages/metal.html'"">Metal Gear Solid</button>
<button class="button" data-title="Jetpack Joyride" onclick="window.location.href='pages/game-pages/jet.html'"">Jetpack Joyride</button>
<button class="button" data-title="FNAF" onclick="window.location.href='pages/game-pages/fnaf.html'"">Five Nights at Freddy's</button>
<button class="button" data-title="FNAF" onclick="window.location.href='pages/game-pages/fnaf2.html'"">Five Nights at Freddy's 2</button>
<button class="button" data-title="FNAF" onclick="window.location.href='pages/game-pages/fnaf3.html'"">Five Nights at Freddy's 3</button>
<button class="button" data-title="FNAF" onclick="window.location.href='pages/game-pages/fnaf4.html'"">Five Nights at Freddy's 4</button>
<button class="button" data-title="Hollow Knight" onclick="window.location.href='pages/game-pages/hollow.html'"">Hollow Knight</button>
<button class="button" data-title="Granny" onclick="window.location.href='pages/game-pages/granny.html'"">Granny</button>
<button class="button" data-title="Granny 2" onclick="window.location.href='pages/game-pages/granny2.html'"">Granny 2</button>
<button class="button" data-title="Ice Dodo" onclick="window.location.href='pages/game-pages/icedodo.html'"">Ice Dodo</button>
<button class="button" data-title="Clash of Vikings" onclick="window.location.href='pages/game-pages/clash.html'"">Clash of Vikings</button>
<button class="button" data-title="Agar.io" onclick="window.location.href='pages/game-pages/agario.html'"">Agar IO</button>
<button class="button" data-title="Awesome Tanks" onclick="window.location.href='pages/game-pages/awesome.html'"">Awesome Tanks</button>
<button class="button" data-title="Binding" onclick="window.location.href='pages/game-pages/binding.html'"">Binding Of Issac: Wrath of the Lamb</button>
<button class="button" data-title="Hollow Knight" onclick="window.location.href='pages/game-pages/silksong.html'"">Hollow Knight: Silksong (PICO-8 REMAKE)</button>
<button class="button" data-title="Basketball Stars" onclick="window.location.href='pages/game-pages/basketstars.html'"">Basketball Stars</button>
<button class="button" data-title="Football Bros" onclick="window.location.href='pages/game-pages/footbros.html'"">Football Bros</button>
<button class="button" data-title="Baseball Bros" onclick="window.location.href='pages/game-pages/basebros.html'"">Baseball Bros</button>
<button class="button" data-title="Basket Bros" onclick="window.location.href='pages/game-pages/basketbros.html'"">Basket Bros</button>
<button class="button" data-title="Snow Rider 3D" onclick="window.location.href='pages/game-pages/snowrider.html'"">Snow Rider 3D</button>
<button class="button" data-title="Stick Slasher" onclick="window.location.href='pages/game-pages/stickslasher.html'"">Stick Slasher</button>
<button class="button" data-title="Block Blast" onclick="window.location.href='pages/game-pages/blockblast.html'"">Block Blast</button>
<button class="button" data-title="Super Mario 64" onclick="window.location.href='pages/game-pages/supermario64.html'"">Super Mario 64</button>
<button class="button" data-title="They Are Coming" onclick="window.location.href='pages/game-pages/theycomin.html'"">They Are Coming</button>
<button class="button" data-title="Paper IO" onclick="window.location.href='pages/game-pages/paperio.html'"">Paper IO</button>
<button class="button" data-title="Gladdihoppers" onclick="window.location.href='pages/game-pages/gladdihoppers.html'"">Gladdihoppers</button>
<button class="button" data-title="Kindergarten" onclick="window.location.href='pages/game-pages/kinder.html'"">Kindergarten</button>
<button class="button" data-title="Kindergarten" onclick="window.location.href='pages/game-pages/kinder2.html'"">Kindergarten 2</button>
<button class="button" data-title="Kindergarten" onclick="window.location.href='pages/game-pages/kinder3.html'"">Kindergarten 3</button>
<button class="button" data-title="Silent Hill" onclick="window.location.href='pages/game-pages/silentps1.html'"">Silent Hill PS1</button>
<button class="button" data-title="Call of Duty" onclick="window.location.href='pages/game-pages/codmw4.html'"">Call of Duty 4 - Modern Warfare</button>
<button class="button" data-title="House of Hazards" onclick="window.location.href='pages/game-pages/hazard.html'"">House of Hazards</button>
-->
</div>
</main>
</div>
</body>
<script>
// Tab cloaker
(function() {
const value = localStorage.getItem('tabCloaker') || 'default';
const favicon = document.querySelector("link[rel~='icon']") || (() => {
const link = document.createElement('link');
link.rel = 'icon';
document.head.appendChild(link);
return link;
})();
if (value === 'google') {
document.title = 'Google';
favicon.href = 'https://www.google.com/favicon.ico';
} else if (value === 'vocab') {
document.title = 'My Learning | Vocabulary.com';
favicon.href = 'https://www.vocabulary.com/favicon.ico';
} else {
document.title = 'Games';
favicon.href = '/favicon.ico';
}
})();
// Game button filter
function filterGames() {
const input = document.getElementById('game-search').value.toLowerCase();
const buttons = document.querySelectorAll('#game-buttons .button');
let anyVisible = false;
buttons.forEach(btn => {
const title = btn.getAttribute('data-title').toLowerCase();
if (title.includes(input)) {
btn.style.display = '';
anyVisible = true;
} else {
btn.style.display = 'none';
}
});
document.getElementById('no-results-message').style.display = anyVisible ? 'none' : 'block';
}
</script>
</html>