-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsplash.html
More file actions
389 lines (341 loc) · 10.1 KB
/
splash.html
File metadata and controls
389 lines (341 loc) · 10.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Climate Action - Together for Our Planet</title>
<meta http-equiv="refresh" content="4; url=home.html">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
height: 100vh;
background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #4CAF50 100%);
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
position: relative;
}
/* Animated background elements */
.background-elements {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
}
.cloud {
position: absolute;
background: rgba(255, 255, 255, 0.8);
border-radius: 50px;
animation: float 6s ease-in-out infinite;
}
.cloud:before {
content: '';
position: absolute;
background: rgba(255, 255, 255, 0.8);
border-radius: 50px;
}
.cloud1 {
width: 80px;
height: 30px;
top: 10%;
left: 10%;
animation-delay: 0s;
}
.cloud1:before {
width: 40px;
height: 40px;
top: -20px;
left: 15px;
}
.cloud2 {
width: 60px;
height: 25px;
top: 20%;
right: 15%;
animation-delay: -2s;
}
.cloud2:before {
width: 35px;
height: 35px;
top: -15px;
right: 10px;
}
.cloud3 {
width: 70px;
height: 28px;
bottom: 15%;
left: 20%;
animation-delay: -4s;
}
.cloud3:before {
width: 38px;
height: 38px;
top: -18px;
left: 20px;
}
@keyframes float {
0%, 100% { transform: translateY(0px) translateX(0px); }
25% { transform: translateY(-10px) translateX(5px); }
50% { transform: translateY(-20px) translateX(-5px); }
75% { transform: translateY(-10px) translateX(5px); }
}
/* Main content container */
.splash-container {
text-align: center;
color: white;
z-index: 10;
position: relative;
max-width: 800px;
padding: 40px;
background: rgba(255, 255, 255, 0.1);
border-radius: 20px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
animation: slideIn 1s ease-out;
}
@keyframes slideIn {
from {
opacity: 0;
transform: translateY(50px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Logo and icon */
.logo-container {
margin-bottom: 30px;
position: relative;
}
.earth-icon {
width: 120px;
height: 120px;
background: linear-gradient(45deg, #4CAF50, #2E7D32);
border-radius: 50%;
margin: 0 auto 20px;
position: relative;
animation: rotate 8s linear infinite;
box-shadow: 0 0 30px rgba(76, 175, 80, 0.6);
}
.earth-icon::before {
content: '🌍';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 60px;
animation: pulse 2s ease-in-out infinite;
}
@keyframes rotate {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
@keyframes pulse {
0%, 100% { transform: translate(-50%, -50%) scale(1); }
50% { transform: translate(-50%, -50%) scale(1.1); }
}
/* Title styling */
.title {
font-size: 3.5em;
font-weight: bold;
margin-bottom: 20px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
animation: titleGlow 3s ease-in-out infinite alternate;
}
@keyframes titleGlow {
from { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); }
to { text-shadow: 2px 2px 20px rgba(255, 255, 255, 0.8); }
}
/* Mission statement */
.mission {
font-size: 1.4em;
margin-bottom: 30px;
line-height: 1.6;
animation: fadeInUp 1.5s ease-out 0.5s both;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Team members */
.team-section {
margin-bottom: 30px;
animation: fadeInUp 1.5s ease-out 1s both;
}
.team-title {
font-size: 1.8em;
margin-bottom: 15px;
color: #E8F5E8;
}
.team-members {
font-size: 1.2em;
line-height: 1.8;
}
/* Loading animation */
.loader-container {
margin-top: 40px;
animation: fadeIn 2s ease-out 1.5s both;
}
.loader-text {
font-size: 1.1em;
margin-bottom: 20px;
color: #E8F5E8;
}
.loader {
width: 200px;
height: 8px;
background: rgba(255, 255, 255, 0.3);
border-radius: 10px;
margin: 0 auto;
overflow: hidden;
position: relative;
}
.loader-bar {
height: 100%;
background: linear-gradient(90deg, #4CAF50, #8BC34A, #4CAF50);
border-radius: 10px;
animation: loading 4s ease-in-out;
background-size: 200% 100%;
animation: loading 4s ease-in-out, shimmer 1s infinite;
}
@keyframes loading {
from { width: 0%; }
to { width: 100%; }
}
@keyframes shimmer {
0% { background-position: -200% 0; }
100% { background-position: 200% 0; }
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
/* Floating particles */
.particle {
position: absolute;
background: rgba(255, 255, 255, 0.6);
border-radius: 50%;
animation: floatParticle 8s infinite ease-in-out;
}
.particle1 {
width: 4px;
height: 4px;
top: 30%;
left: 80%;
animation-delay: 0s;
}
.particle2 {
width: 6px;
height: 6px;
top: 60%;
left: 10%;
animation-delay: -2s;
}
.particle3 {
width: 3px;
height: 3px;
top: 80%;
right: 20%;
animation-delay: -4s;
}
.particle4 {
width: 5px;
height: 5px;
top: 40%;
right: 60%;
animation-delay: -6s;
}
@keyframes floatParticle {
0%, 100% {
transform: translateY(0px) translateX(0px);
opacity: 0.6;
}
25% {
transform: translateY(-20px) translateX(10px);
opacity: 1;
}
50% {
transform: translateY(-40px) translateX(-10px);
opacity: 0.8;
}
75% {
transform: translateY(-20px) translateX(10px);
opacity: 1;
}
}
/* Responsive design */
@media (max-width: 768px) {
.splash-container {
padding: 20px;
margin: 20px;
}
.title {
font-size: 2.5em;
}
.mission {
font-size: 1.2em;
}
.earth-icon {
width: 100px;
height: 100px;
}
.earth-icon::before {
font-size: 50px;
}
}
</style>
</head>
<body>
<div class="background-elements">
<!-- Animated clouds -->
<div class="cloud cloud1"></div>
<div class="cloud cloud2"></div>
<div class="cloud cloud3"></div>
<!-- Floating particles -->
<div class="particle particle1"></div>
<div class="particle particle2"></div>
<div class="particle particle3"></div>
<div class="particle particle4"></div>
</div>
<div class="splash-container">
<div class="logo-container">
<div class="earth-icon"></div>
<h1 class="title">Climate Action</h1>
</div>
<div class="mission">
<p>Together for Our Planet - Taking Action Against Climate Change</p>
<p>Building a sustainable future through awareness, innovation, and collective action</p>
</div>
<div class="team-section">
<h2 class="team-title">Our Team</h2>
<div class="team-members">
<p>Student Name 1 - Splash & Volunteer Pages</p>
<p>Student Name 2 - Template & Home Page</p>
<p>Student Name 3 - Feedback & Team Pages</p>
<p>Student Name 4 - Profile & Sitemap Pages</p>
</div>
</div>
<div class="loader-container">
<p class="loader-text">Loading Climate Action Hub...</p>
<div class="loader">
<div class="loader-bar"></div>
</div>
</div>
</div>
</body>
</html>