-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathteam.html
468 lines (443 loc) · 12.1 KB
/
team.html
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
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>UNSW Rocketry - Team</title>
<link rel="stylesheet" href="team.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css"
/>
</head>
</html>
<body>
<!-- Header that appears when scrolling up, hides when scrolling down -->
<header id="navbar" class="navbar">
<a href="home.html" class="brand">UNSW Rocketry</a>
<div class="menu-btn"></div>
<div class="navigation">
<div class="navigation-items">
<a href="home.html">Home</a>
<a href="team.html">Team</a>
<a href="projects.html">Projects</a>
<a href="gallery.html">Gallery</a>
<a href="thesis.html">Thesis</a>
<a href="contact.html">Contact</a>
</div>
</div>
</header>
<script>
// JavaScript for hiding nav bar when scrolling down, and showing nav bar when scrolling up
var lastScrollTop = 0;
var isScrollingUp = false;
navbar = document.getElementById("navbar");
window.addEventListener("scroll", function () {
var scrollTop = window.pageYOffset || document.documentElement.scrollTop;
if (scrollTop <= 0) {
// At the top of the page
navbar.style.top = "0";
isScrollingUp = true;
} else if (scrollTop < lastScrollTop && !isScrollingUp) {
// Scrolling up
navbar.style.top = "0";
isScrollingUp = true;
} else if (scrollTop > lastScrollTop && isScrollingUp) {
// Scrolling down
navbar.style.top = "-80px";
isScrollingUp = false;
}
lastScrollTop = scrollTop;
});
// Javascript for changing background color of nav bar from transparent to black after scrolling past the first section
const nav = document.querySelector(".navbar");
const section1 = document.querySelector(".section1");
window.onscroll = function () {
if (document.documentElement.scrollTop >= 300) {
nav.classList.add("nav-colored");
nav.classList.remove("nav-transparent");
} else {
nav.classList.add("nav-transparent");
nav.classList.remove("nav-colored");
}
};
</script>
<!-- Main Banner Section -->
<section class="section1">
<div class="image1">
<img src="team/images/1.jpg" />
</div>
<div class="content active">
<h1><br /><span>Team</span></h1>
<p></p>
</div>
<div class="media-icons">
<a href="https://www.facebook.com/UNSWRocketry"
><i class="fab fa-facebook-f"></i
></a>
<a href="https://www.instagram.com/unswrocketry/"
><i class="fab fa-instagram"></i
></a>
<a href="https://www.linkedin.com/company/unsw-rocketry"
><i class="fab fa-linkedin"></i
></a>
</div>
<script type="text/javascript">
//Resposnsive navigation menu script
const menuBtn = document.querySelector(".menu-btn");
const navigation = document.querySelector(".navigation");
menuBtn.addEventListener("click", () => {
menuBtn.classList.toggle("active");
navigation.classList.toggle("active");
});
</script>
</section>
<!-- Row 1 of team members -->
<section class="section2">
<div class="container reveal">
<h2>Executive Team Members</h2>
<div class="cards">
<div class="text-card">
<h3>Aayush Thapa</h3>
<p>
<br />
<img src="team/images/2.jpg" class="headshot" />
<br />
<br />
President
<br />
<br />
</p>
</div>
<div class="text-card">
<h3>Naomi Aravena</h3>
<p>
<br />
<img src="team/images/3.jpg" class="headshot" />
<br />
<br />
Team Secretary
<br />
<br />
</p>
</div>
<div class="text-card">
<h3>Shriya Kodre</h3>
<p>
<br />
<img src="team/images/4.jpg" class="headshot" />
<br />
<br />
Treasurer
<br />
<br />
</p>
</div>
<div class="text-card">
<h3>Tasneem Fatima</h3>
<p>
<br />
<img src="team/images/5.jpg" class="headshot" />
<br />
<br />
Vice President
<br />
<br />
</p>
</div>
<div class="text-card">
<h3>Nicholas Piscioneri</h3>
<p>
<br />
<img src="team/images/6.jpg" class="headshot" />
<br />
<br />
Business Lead
<br />
<br />
</p>
</div>
</div>
</div>
</section>
<!-- Row 2 of team members -->
<section class="section2">
<div class="container reveal">
<div class="cards">
<div class="text-card">
<h3>Lachlan Bramble</h3>
<p>
<br />
<img src="team/images/7.jpg" class="headshot" />
<br />
<br />
Chief Technical Officer
<br />
<br />
</p>
</div>
<div class="text-card">
<h3>Ram Ganesh</h3>
<p>
<br />
<img src="team/images/8.jpg" class="headshot" />
<br />
<br />
Avionics Lead
<br />
<br />
</p>
</div>
<div class="text-card">
<h3>Lara McCudden</h3>
<p>
<br />
<img src="team/images/9.jpg" class="headshot" />
<br />
<br />
Operations Lead
<br />
<br />
</p>
</div>
<div class="text-card">
<h3>Sam Wilson</h3>
<p>
<br />
<img src="team/images/10.jpg" class="headshot" />
<br />
<br />
Recovery Lead
<br />
<br />
</p>
</div>
<div class="text-card">
<h3>Amene Ensaf</h3>
<p>
<br />
<img src="team/images/11.jpg" class="headshot" />
<br />
<br />
Manufacturing Lead
<br />
<br />
</p>
</div>
</div>
</div>
</section>
<!-- Row 3 of team members -->
<section class="section2">
<div class="container reveal">
<div class="cards">
<div class="text-card">
<h3>Eric Mueller</h3>
<p>
<br />
<img src="team/images/12.jpg" class="headshot" />
<br />
<br />
Team Advisor
<br />
<br />
</p>
</div>
<div class="text-card">
<h3>Margarita Piperias</h3>
<p>
<br />
<img src="team/images/13.jpg" class="headshot" />
<br />
<br />
Team Advisor
<br />
<br />
</p>
</div>
<div class="text-card">
<h3>Darson Li</h3>
<p>
<br />
<img src="team/images/14.jpg" class="headshot" />
<br />
<br />
Academic Supervisor
<br />
<br />
</p>
</div>
<div class="text-card">
<h3>Garth Pierce</h3>
<p>
<br />
<img src="team/images/15.jpg" class="headshot" />
<br />
<br />
Technical Supervisor
<br />
<br />
</p>
</div>
</div>
</div>
</section>
<!-- Row 4 of team members -->
<!-- <section class="section2">
<div class="container reveal">
<div class="cards">
<div class="text-card">
<h3>Dr John Olsen</h3>
<p>
<br />
<img src="team/images/14.jpg" class="headshot" />
<br />
<br />
Teechnical Supervisor
<br />
<br />
</p>
</div> -->
<!-- <div class="text-card">
<h3>Joseph Stalin</h3>
<p>
<br />
<img src="team/images/15.jpg" class="headshot" />
<br />
<br />
Together, we push the boundaries and redefine what's possible in the
world of rocketry.
<br />
<br />
</p>
</div>
<div class="text-card">
<h3>Joseph Stalin</h3>
<p>
<br />
<img src="team/images/16.jpg" class="headshot" />
<br />
<br />
Together, we push the boundaries and redefine what's possible in the
world of rocketry.
<br />
<br />
</p>
</div> -->
</div>
</div>
</section>
<!-- Row 4 of team members -->
<!-- <section class="section2">
<div class="container reveal">
<div class="cards">
<div class="text-card">
<h3>Joseph Stalin</h3>
<p>
<br />
<img src="team/images/17.jpg" class="headshot" />
<br />
<br />
Together, we push the boundaries and redefine what's possible in the
world of rocketry.
<br />
<br />
</p>
</div>
<div class="text-card">
<h3>Joseph Stalin</h3>
<p>
<br />
<img src="team/images/18.jpg" class="headshot" />
<br />
<br />
Together, we push the boundaries and redefine what's possible in the
world of rocketry.
<br />
<br />
</p>
</div>
<div class="text-card">
<h3>Joseph Stalin</h3>
<p>
<br />
<img src="team/images/19.jpg" class="headshot" />
<br />
<br />
Together, we push the boundaries and redefine what's possible in the
world of rocketry.
<br />
<br />
</p>
</div>
<div class="text-card">
<h3>Joseph Stalin</h3>
<p>
<br />
<img src="team/images/20.jpg" class="headshot" />
<br />
<br />
Together, we push the boundaries and redefine what's possible in the
world of rocketry.
<br />
<br />
</p>
</div>
<div class="text-card">
<h3>Joseph Stalin</h3>
<p>
<br />
<img src="team/images/21.jpg" class="headshot" />
<br />
<br />
Together, we push the boundaries and redefine what's possible in the
world of rocketry.
<br />
<br />
</p>
</div>
</div>
</div>
</section> -->
<!-- Javascript for controlling fade in of components with .reveal class tag-->
<script type="text/javascript">
window.addEventListener("scroll", reveal);
function reveal() {
var reveals = document.querySelectorAll(".reveal");
for (var i = 0; i < reveals.length; i++) {
var windowheight = window.innerHeight;
var revealtop = reveals[i].getBoundingClientRect().top;
var revealpoint = 150;
if (revealtop < windowheight - revealpoint) {
reveals[i].classList.add("active");
} else {
reveals[i].classList.remove("active");
}
}
}
</script>
<!-- Footer -->
<section
class="footer"
style="
background-color: #050505;
display: flex;
align-items: center;
justify-content: center;
"
>
<div
style="
text-align: center;
height: 50px;
color: #232323;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.8em;
"
>
© Nicholas Piscioneri - UNSW Rocketry - 2023 - All Rights Reserved
</div>
</section>
</body>