-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
358 lines (318 loc) · 8.78 KB
/
index.html
File metadata and controls
358 lines (318 loc) · 8.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Rumbling Code</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700;900&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
height: 100vh;
width: 100vw;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
color: #fff;
background-color: black;
position: relative;
}
.bg-container {
position: absolute;
inset: 0;
overflow: hidden;
z-index: 0;
}
.bg-image {
position: absolute;
inset: 0;
background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') no-repeat center center;
background-size: cover;
transform: scale(1.1);
opacity: 0;
animation: fadeInBg 1s ease-in-out 0.5s forwards,
growBg 8s ease-in-out 1s forwards;
}
.overlay {
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.7);
z-index: 1;
opacity: 0;
animation: fadeIn 2s ease-in-out 1s forwards;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes fadeInBg {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes growBg {
0% { transform: scale(1.1); }
100% { transform: scale(1.3); }
}
.content {
position: relative;
z-index: 2;
opacity: 0;
transform: scale(0.8);
animation: appearText 0.6s ease-out 4s forwards,
rumble 0.5s ease-in-out 4.3s;
text-align: center;
max-width: 90%;
}
@keyframes appearText {
from {
opacity: 0;
transform: scale(0.8);
}
to {
opacity: 1;
transform: scale(1);
}
}
h1 {
font-size: 5rem;
letter-spacing: 6px;
text-transform: uppercase;
color: #ff2b2b;
animation: glitch 1s infinite 4.5s;
margin-bottom: 1rem;
text-shadow: 0 0 10px rgba(255, 43, 43, 0.5);
}
@keyframes glitch {
0% { text-shadow: 2px 2px #ff0000, -2px -2px #00fff9; }
20% { text-shadow: -2px 0 #ff0000, 2px -2px #00fff9; }
40% { text-shadow: 2px 2px #ff0000, -2px 2px #00fff9; }
60% { text-shadow: -2px -2px #ff0000, 2px 0 #00fff9; }
80% { text-shadow: 2px -2px #ff0000, -2px 2px #00fff9; }
100% { text-shadow: 2px 2px #ff0000, -2px -2px #00fff9; }
}
@keyframes rumble {
0%, 100% { transform: translate(0, 0); }
20% { transform: translate(-5px, -5px); }
40% { transform: translate(5px, 5px); }
60% { transform: translate(-3px, -3px); }
80% { transform: translate(3px, 3px); }
}
/* Subtle fog overlay for dynamic motion */
.fog {
position: absolute;
inset: 0;
background: radial-gradient(circle, rgba(255,255,255,0.05), transparent 70%);
z-index: 1;
opacity: 0;
animation: fadeIn 2s ease-in-out 3s forwards, fogMove 15s infinite linear 3s;
}
@keyframes fogMove {
0% { transform: translateX(0); }
50% { transform: translateX(30px); }
100% { transform: translateX(0); }
}
.subtitle {
font-size: 1.5rem;
margin-bottom: 3rem;
opacity: 0;
animation: fadeIn 1s ease-in-out 4.5s forwards;
color: #ccc;
}
.code-particles {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
pointer-events: none;
}
.code-particle {
position: absolute;
color: rgba(0, 255, 249, 0.7);
font-family: monospace;
font-size: 14px;
opacity: 0;
animation: fall linear infinite;
}
.name-particle {
position: absolute;
color: rgba(255, 43, 43, 0.8);
font-family: 'Poppins', sans-serif;
font-weight: bold;
font-size: 16px;
opacity: 0;
animation: fall linear infinite;
text-shadow: 0 0 5px rgba(255, 43, 43, 0.5);
}
@keyframes fall {
0% {
transform: translateY(-100px);
opacity: 0;
}
10% {
opacity: 1;
}
90% {
opacity: 1;
}
100% {
transform: translateY(100vh);
opacity: 0;
}
}
.floating-elements {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
pointer-events: none;
}
.floating-element {
position: absolute;
width: 30px;
height: 30px;
border-radius: 50%;
background: rgba(255, 43, 43, 0.2);
animation: float 15s infinite ease-in-out;
}
@keyframes float {
0%, 100% {
transform: translate(0, 0) rotate(0deg);
}
25% {
transform: translate(20px, 40px) rotate(90deg);
}
50% {
transform: translate(-30px, 60px) rotate(180deg);
}
75% {
transform: translate(10px, 20px) rotate(270deg);
}
}
.floating-element:nth-child(2) {
width: 20px;
height: 20px;
background: rgba(0, 255, 249, 0.2);
animation-delay: -5s;
}
.floating-element:nth-child(3) {
width: 40px;
height: 40px;
background: rgba(255, 255, 255, 0.1);
animation-delay: -10s;
}
.pulse {
position: absolute;
width: 100%;
height: 100%;
border-radius: 50%;
background: rgba(255, 43, 43, 0.1);
animation: pulse 3s infinite ease-in-out;
z-index: -1;
}
@keyframes pulse {
0% {
transform: scale(0.8);
opacity: 0.7;
}
50% {
transform: scale(1.2);
opacity: 0.3;
}
100% {
transform: scale(0.8);
opacity: 0.7;
}
}
@media (max-width: 768px) {
h1 {
font-size: 3rem;
letter-spacing: 3px;
}
.subtitle {
font-size: 1.2rem;
}
}
</style>
</head>
<body>
<div class="bg-container">
<div class="bg-image"></div>
</div>
<div class="overlay"></div>
<div class="fog"></div>
<div class="code-particles" id="codeParticles"></div>
<div class="floating-elements">
<div class="floating-element"></div>
<div class="floating-element"></div>
<div class="floating-element"></div>
</div>
<div class="content">
<h1>The Rumbling Code</h1>
<p class="subtitle">Where algorithms awaken and digital worlds tremble</p>
<div class="pulse"></div>
</div>
<script>
// Team member names
const teamMembers = [
"Harsh Yadav",
"Vinay Kumar",
"Bhoomika Gautam",
"Mohd Asif",
"Chandrbhan Kumar",
"Bhaskar Singh"
];
// Create falling code particles and team member names
function createCodeParticles() {
const container = document.getElementById('codeParticles');
const characters = '01{}[]();<>/\\=+-*%$#@!~`';
// Create regular code particles
for (let i = 0; i < 40; i++) {
const particle = document.createElement('div');
particle.classList.add('code-particle');
particle.textContent = characters.charAt(Math.floor(Math.random() * characters.length));
// Random properties
const left = Math.random() * 100;
const duration = 5 + Math.random() * 10;
const delay = Math.random() * 15;
particle.style.left = `${left}%`;
particle.style.animationDuration = `${duration}s`;
particle.style.animationDelay = `${delay}s`;
container.appendChild(particle);
}
// Create team member name particles
for (let i = 0; i < 20; i++) {
const nameParticle = document.createElement('div');
nameParticle.classList.add('name-particle');
nameParticle.textContent = teamMembers[Math.floor(Math.random() * teamMembers.length)];
// Random properties with slightly different ranges
const left = Math.random() * 100;
const duration = 8 + Math.random() * 12; // Names fall slower
const delay = Math.random() * 20;
nameParticle.style.left = `${left}%`;
nameParticle.style.animationDuration = `${duration}s`;
nameParticle.style.animationDelay = `${delay}s`;
// Add occasional glow effect
if (Math.random() > 0.7) {
nameParticle.style.textShadow = '0 0 10px rgba(255, 43, 43, 0.8)';
}
container.appendChild(nameParticle);
}
}
// Initialize effects
window.onload = function() {
createCodeParticles();
};
</script>
</body>
</html>