-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
443 lines (394 loc) · 16.8 KB
/
index.html
File metadata and controls
443 lines (394 loc) · 16.8 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IntunarWeb</title>
<link rel="shortcut icon" href="icono.png">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: linear-gradient(180deg, #e8b023, #efd31a, #fb6621, #f7aa1b);
font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
min-height: 100vh;
overflow: hidden;
position: relative;
}
.ocean-background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:
radial-gradient(circle at 20% 30%, rgba(242, 128, 7, 0.25) 0px, transparent 50px),
radial-gradient(circle at 80% 70%, rgba(188, 208, 37, 0.435) 0px, transparent 50px),
radial-gradient(circle at 40% 80%, rgb(242, 163, 16) 0px, transparent 51px);
z-index: 1;
}
.fish {
position: absolute;
font-size: 55px;
z-index: 3;
animation: swim 4s linear infinite;
}
@keyframes swim {
0% { transform: translateX(-100px) rotate(12deg); }
100% { transform: translateX(calc(100vw + 100px)) rotate(9deg); }
}
.glass-circles {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 3;
}
.glass-circle {
position: absolute;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
backdrop-filter: blur(3px);
border: 2px solid rgba(255, 255, 255, 0.2);
box-shadow:
inset 0 0 20px rgba(255, 255, 255, 0.1),
0 0 20px rgba(0, 100, 200, 0.2);
}
.header-bar {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 70px;
background: rgba(255, 255, 255, 0.15);
backdrop-filter: blur(19px);
box-shadow: 0 5px 26px rgba(0, 50, 100, 0.2);
border-bottom: 1px solid rgba(255, 255, 255, 0.3);
display: flex;
align-items: center;
padding: 20px;
z-index: 100;
}
.search-container {
flex: 2;
max-width: 600px;
}
.search-bar {
width: 100%;
padding: 14px 25px;
font-size: 18px;
border: none;
border-radius: 30px;
background: rgba(255, 255, 255, 0.2);
color: white;
box-shadow:
0 5px 20px rgba(0, 50, 100, 0.2),
inset 0 2px 10px rgba(255, 255, 255, 0.3),
inset 0 -2px 10px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.3);
outline: none;
transition: all 0.3s ease;
}
.search-bar::placeholder {
color: rgba(255, 255, 255, 0.8);
}
.search-bar:focus {
background: rgba(255, 255, 255, 0.3);
box-shadow:
0 8px 30px rgba(0, 50, 100, 0.3),
inset 0 2px 15px rgba(255, 255, 255, 0.4),
inset 0 -2px 15px rgba(0, 0, 0, 0.15);
}
.container {
position: relative;
width: 100%;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
z-index: 10;
padding-top: 90px;
}
.spring-web-title {
font-size: 85px;
font-weight: 767;
color: rgb(255, 255, 255);
text-shadow: 0 0 30px rgba(4, 74, 154, 0.967);
margin-bottom: 39px;
text-align: center;
z-index: 20;
letter-spacing: -2px;
font-family: 'Bubblegum Sans', cursive;
animation: float 2s ease-in-out infinite;
background: rgba(255, 255, 255, 0.1);
padding: 20px 40px;
border-radius: 30px;
backdrop-filter: blur(15px);
border: 2px solid rgba(255, 255, 255, 0.2);
box-shadow:
0 10px 30px rgba(0, 50, 100, 0.3),
inset 0 5px 15px rgba(255, 255, 255, 0.2),
inset 0 -5px 15px rgba(0, 0, 0, 0.1);
}
@keyframes float {
0%, 100% { transform: translateY(40px); }
50% { transform: translateY(-11px); }
}
.buttons-container {
display: grid;
grid-template-columns: repeat(9, 1fr);
gap: 14px;
max-width: 1400px;
padding: 29px;
z-index: 20;
overflow-y: auto;
max-height: calc(100vh - 220px);
}
.aero-button {
background: rgba(235, 153, 118, 0.15);
border-radius: 30px;
padding: 15px 20px;
text-align: center;
font-weight: 667;
color: rgb(255, 255, 255);
text-decoration: none;
box-shadow:
0 6px 25px rgba(0, 50, 100, 0.2),
inset 0 2px 10px rgba(245, 177, 113, 0.2),
inset 0 -2px 10px rgba(0, 0, 0, 0.1);
cursor: pointer;
transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
border: 1px solid rgba(255, 149, 149, 0.25);
backdrop-filter: blur(12px);
position: relative;
overflow: hidden;
font-size: 14px;
min-height: 55px;
display: flex;
align-items: center;
justify-content: center;
}
.aero-button:before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(45deg, transparent, rgba(255, 196, 0, 0.15), transparent);
transform: rotate(45deg);
transition: all 0.6s ease;
}
.aero-button:hover {
transform: translateY(-5px) scale(1.03);
box-shadow:
0 10px 35px rgba(109, 4, 4, 0.3),
inset 0 2px 15px rgba(255, 255, 255, 0.3),
inset 0 -2px 15px rgba(0, 0, 0, 0.15);
background: rgba(255, 255, 255, 0.2);
}
.aero-button:hover:before {
transform: rotate(45deg) translate(20%, 20%);
}
/* Scrollbar styling */
.buttons-container::-webkit-scrollbar {
width: 9px;
}
.buttons-container::-webkit-scrollbar-track {
background: rgba(255, 255, 255, 0.1);
border-radius: 5px;
}
.buttons-container::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.25);
border-radius: 5px;
}
.buttons-container::-webkit-scrollbar-thumb:hover {
background: rgba(255, 255, 255, 0.35);
}
@media (max-width: 1400px) {
.buttons-container {
grid-template-columns: repeat(8, 1fr);
}
}
@media (max-width: 1200px) {
.buttons-container {
grid-template-columns: repeat(7, 1fr);
}
.spring-web-title {
font-size: 70px;
}
}
@media (max-width: 1000px) {
.buttons-container {
grid-template-columns: repeat(6, 1fr);
}
}
@media (max-width: 800px) {
.buttons-container {
grid-template-columns: repeat(5, 1fr);
}
.spring-web-title {
font-size: 60px;
}
}
@media (max-width: 650px) {
.buttons-container {
grid-template-columns: repeat(4, 1fr);
}
.spring-web-title {
font-size: 50px;
padding: 15px 30px;
}
.search-bar {
padding: 12px 20px;
font-size: 16px;
}
}
@media (max-width: 500px) {
.buttons-container {
grid-template-columns: repeat(3, 1fr);
}
.header-bar {
padding: 0 15px;
}
.spring-web-title {
font-size: 40px;
}
}
</style>
<link href="https://fonts.googleapis.com/css2?family=Bubblegum+Sans&display=swap" rel="stylesheet">
</head>
<body>
<div class="ocean-background"></div>
<div class="glass-circles" id="glassCircles"></div>
<div class="header-bar">
<div class="search-container">
<input type="text" class="search-bar" id="searchInput" placeholder="Search for games...">
</div>
</div>
<div class="container">
<div class="spring-web-title">IntunarWeb, Fall</div>
<br> <b>To get back home from the game, just press the back button in the top left in the Home | Schoology tab 8) </b> </br>
<div class="buttons-container" id="buttonsContainer">
<a href="9/html files/rush.html" class="aero-button">ClusterRush</a>
<a href="9/html files/musclew.html" class="aero-button">Muscle Wiki</a>
<a href="9/html files/copi.html" class="aero-button">Microsoft Copilot</a>
<a href="9/html files/river.html" class="aero-button">Wheely Bike 2</a>
<a href="9/html files/BLOCKS/BLOCKS.html" class="aero-button">Simple Minecraft</a>
<a href="9/html files/EAGLERCRAFT2.html" class="aero-button">Minecraft 1.5.2</a>
<a href="9/html files/EAGLERCRAFT.html" class="aero-button">Minecraft Beta</a>
<a href="9/html files/DOOM/DOOM CLONE/DOOM CLONE.html" class="aero-button">Doom Clone</a>
<a href="9/html files/DOOM/CHECK DOOM.html" class="aero-button">Doom on Checkboxes</a>
<a href="9/html files/DOOM/pdf.html" class="aero-button">Doom on a PDF</a>
<a href="9/html files/HUNGER/HUNGER.html" class="aero-button">Hunger Games Simulator</a>
<a href="9/html files/PACMAN/PACMAN.html" class="aero-button">3D Pacman</a>
<a href="9/html files/TETHER/TETHER.html" class="aero-button">Tether</a>
<a href="9/html files/6X.html" class="aero-button">Classroom 6x</a>
<a href="9/html files/mariokoart64.html" class="aero-button">Mario Kart 64</a>
<a href="9/html files/JJJ.html" class="aero-button">Jetpack Joyride</a>
<a href="9/html files/BATTLE.html" class="aero-button">Sword Battle</a>
<a href="9/html files/BMAN.html" class="aero-button">Simple Bomber Man</a>
<a href="9/html files/BREAK.html" class="aero-button">Simple Breakout</a>
<a href="9/html files/BUBBLES.html" class="aero-button">Bubble Game</a>
<a href="9/html files/CARS.html" class="aero-button">Car Circle</a>
<a href="9/html files/CHICKEN.html" class="aero-button">Crossy Road</a>
<a href="9/html files/CHROMA.html" class="aero-button">The Chroma Incident</a>
<a href="9/html files/CMTH.html" class="aero-button">CoolMath Games</a>
<a href="9/html files/DINO.html" class="aero-button">Chrome Dino</a>
<a href="9/html files/DRIVE.html" class="aero-button">Polytrack</a>
<a href="9/html files/FROG.html" class="aero-button">Simple Frogger</a>
<a href="9/html files/GAMES.html" class="aero-button">Qag 99</a>
<a href="9/html files/GLITCH.html" class="aero-button">Evil Glitch</a>
<a href="9/html files/JUMP.html" class="aero-button">Simple Doodle Jump</a>
<a href="9/html files/KON.html" class="aero-button">Konnect</a>
<a href="9/html files/lum.html" class="aero-button">Lumon Industries</a>
<a href="9/html files/MAR64.html" class="aero-button">Mario 64</a>
<a href="9/html files/MARIO.html" class="aero-button">OG Mario</a>
<a href="9/html files/MISSILE.html" class="aero-button">Simple Missile</a>
<a href="9/html files/nel.html" class="aero-button">Neal.fun</a>
<a href="9/html files/NTTLWB.html" class="aero-button">NettleWeb</a>
<a href="9/html files/OGL.html" class="aero-button">Online Games</a>
<a href="9/html files/ore.html" class="aero-button">Oregon Trail</a>
<a href="9/html files/POKEWHO.html" class="aero-button">Pokemon Guesser</a>
<a href="9/html files/PONG.html" class="aero-button">Pong</a>
<a href="9/html files/RETHAUNT.html" class="aero-button">Retro Haunt</a>
<a href="9/html files/ROCKL.html" class="aero-button">2D Rocket League</a>
<a href="9/html files/RUN.html" class="aero-button">Ball Hop</a>
<a href="9/html files/SNAKE.html" class="aero-button">Snake</a>
<a href="9/html files/SQHOLE.html" class="aero-button">Black Hole Square</a>
<a href="9/html files/STACKER.html" class="aero-button">Stacker</a>
<a href="9/html files/TETRIS.html" class="aero-button">Simple Tetris</a>
<a href="9/html files/TRAIL.html" class="aero-button">Simple Oregon Trail</a>
</div>
</div>
<script>
// Create ocean fish
function createFish() {
const container = document.body;
const fishEmojis = ['☕️', '⚜️', '⛅️', '⛺️', '✴️', '🌰', '🌻', '🌼', '🌽', '🌾', '🍁', '🍂', '🍄', '🍠', '🍪', '🍮', '🍯', '🍺', '🍻', '🎃', '🐈', '🔥', '🛶', '🛷', '🥃', '🥐', '🥓', '🥔', '🥕', '🥖', '🥞', '🥧', '🥨', '🥯', '🥾', '🦃', '🦇', '🦉', '🦊', '🦋', '🦌', '🧀', '🧇', '🧈', '🧣', '🧸', '🧹', '🧺', '🪑', '🪤', '🪿', '🪹', '🪶', '🪵',];
for (let i = 0; i < 12; i++) {
const fish = document.createElement('div');
fish.classList.add('fish');
fish.textContent = fishEmojis[Math.floor(Math.random() * fishEmojis.length)];
const posY = Math.random() * 80 + 10;
const delay = Math.random() * 20;
const duration = Math.random() * 30 + 20;
const size = Math.random() * 20 + 20;
fish.style.top = `${posY}%`;
fish.style.animation = `swim ${duration}s linear ${delay}s infinite`;
fish.style.fontSize = `${size}px`;
fish.style.opacity = Math.random() * 0.7 + 0.3;
container.appendChild(fish);
}
}
// Create glass circles
function createGlassCircles() {
const container = document.getElementById('glassCircles');
for (let i = 0; i < 25; i++) {
const circle = document.createElement('div');
circle.classList.add('glass-circle');
const size = Math.random() * 120 + 30;
const posX = Math.random() * 100;
const posY = Math.random() * 100;
const delay = Math.random() * 5;
const duration = Math.random() * 25 + 15;
circle.style.width = `${size}px`;
circle.style.height = `${size}px`;
circle.style.left = `${posX}%`;
circle.style.top = `${posY}%`;
circle.style.animation = `float ${duration}s ease-in-out ${delay}s infinite`;
container.appendChild(circle);
}
}
// Search functionality
function setupSearch() {
const searchInput = document.getElementById('searchInput');
const buttonsContainer = document.getElementById('buttonsContainer');
const buttons = buttonsContainer.querySelectorAll('.aero-button');
searchInput.addEventListener('input', function() {
const searchTerm = this.value.toLowerCase();
buttons.forEach(button => {
const buttonText = button.textContent.toLowerCase();
if (buttonText.includes(searchTerm) || searchTerm === '') {
button.style.display = 'flex';
} else {
button.style.display = 'none';
}
});
});
}
window.addEventListener('load', () => {
createFish();
createGlassCircles();
setupSearch();
});
</script>
</body>
</html>