-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
271 lines (249 loc) · 7.34 KB
/
index.js
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
import { Box, Container, Grid, Typography } from '@mui/material';
import { useEffect, useRef } from 'react';
import Footer from '../components/layout/Footer';
import Header from '../components/layout/Header';
import ScrollLottie from '../lib/ScrollLottie';
import { gsap } from 'gsap/dist/gsap';
import { makeStyles } from '@mui/styles';
const useStyles = makeStyles((theme) => ({
root: {
overflowX: 'hidden',
},
background: {
zIndex: -2,
position: 'fixed',
left: '50%',
top: '50%',
transform: 'translate(-50%, -50%)',
height: '100vh',
},
h100: {
height: '100vh',
position: 'relative',
},
relative: {
position: 'relative',
overflowY: 'hidden',
},
center: {
position: 'absolute',
left: '50%',
top: '50%',
transform: 'translate(-50%, -50%)',
width: '100%',
},
animationContainer: {
zIndex: -1,
overflowX: 'hidden',
position: 'absolute',
width: '100%',
},
animation: {
height: '100vh',
opacity: 0,
overflowY: 'hidden',
},
content: {
textAlign: 'center',
paddingBottom: 450,
},
title: {
fontSize: 100,
},
spacer: {
paddingTop: 1900,
},
rocketPartText: {
[theme.breakpoints.down('md')]: {
textShadow:
'0.05em 0 black, 0 0.05em black, -0.05em 0 black, 0 -0.05em black, -0.05em -0.05em black, -0.05em 0.05em black, 0.05em -0.05em black, 0.05em 0.05em black;',
},
},
}));
export default function Home() {
const classes = useStyles();
const backupAnimRef = useRef();
const animRef = useRef();
const statsRef = useRef();
const whoRef = useRef();
const drillRef = useRef();
const blimsRef = useRef();
const avRef = useRef();
const motorRef = useRef();
const rocketParts = [
{
ref: drillRef,
name: 'Vertical Drill',
description:
'The rocket payload is a mechanism that ejects from the airframe, lands on the ground, and deploys an auger drill that actuates and collects a soil sample for analysis.',
},
{
ref: blimsRef,
name: 'BLiMS',
description:
'The Break Line Manipulation System autonomously pulls the parachute’s brake lines, steering the descending rocket to a predetermined GPS coordinate.',
},
{
ref: avRef,
name: 'AV Bay',
description:
'The avionics bay houses the main electrical boards, such as the Central Flight Computer, and flight batteries of the launch vehicle.',
},
{
ref: motorRef,
name: 'Rocket Motor',
description:
'Constructed from aluminum and steel, our ammonium-perchlorate solid motor is engineered to lift the launch vehicle to the target altitude, generating over 1,000 pounds of thrust at take-off.',
},
];
useEffect(() => {
ScrollLottie({
target: backupAnimRef.current,
path: '../static/lotties/dataIncludedNew.json',
duration: 3800 * 2,
acceleration: 0.3,
});
}, [backupAnimRef]);
useEffect(() => {
ScrollLottie({
target: animRef.current,
path: '../static/lotties/highResAnim.json',
duration: 3800 * 2,
acceleration: 0.3,
});
}, [animRef]);
useEffect(() => {
const statsTimeline = Timeline(statsRef, 800);
const whoTimeline = Timeline(whoRef, 800);
}, [statsRef, whoRef]);
useEffect(() => {
let drillTimeline = Timeline(drillRef, 600);
let blimsTimeline = Timeline(blimsRef, 500);
let avTimeline = Timeline(avRef, 500);
let motorTimeline = Timeline(motorRef, 550);
});
// }, [drillRef, blimsRef, avRef, motorRef]);
// Removing this line fixes issue when clicking navbar Home when on homepage
return (
<div className={classes.root}>
<Header />
<div className={classes.animationContainer}>
<div ref={backupAnimRef} className={classes.animation}></div>
</div>
<div className={classes.animationContainer}>
<div ref={animRef} className={classes.animation}></div>
</div>
<div className={classes.content}>
<div className={classes.h100}>
<Typography variant='h2' className={(classes.title, classes.center)}>
Cornell Rocketry Project Team
</Typography>
</div>
<Container className={classes.relative}>
<div ref={statsRef}>
<Box mb={12}>
<Typography variant='h2'>At a Glance</Typography>
</Box>
<Grid
container
direction='row'
justifyContent='space-between'
spacing={3}
>
<StatsNumber number={50} label={'Team Members'} />
<StatsNumber number={6} label={'Subteams'} />
<StatsNumber number={10} label={'Majors'} />
<StatsNumber number={8} label={'Rockets Launched'} />
</Grid>
</div>
</Container>
<Container className={classes.relative} maxWidth='md'>
<div ref={whoRef}>
<Box mb={6}>
<Typography variant='h2'>Who We Are</Typography>
</Box>
<Typography variant='h5'>
Cornell Rocketry is an engineering project team dedicated to
designing, assembling, and launching high-powered rockets to
compete in the annual Spaceport America Cup.
</Typography>
</div>
</Container>
<Box className={classes.spacer} />
{rocketParts.map(({ ref, name, description }) => (
<RocketPart
reference={ref}
name={name}
description={description}
key={name}
/>
))}
</div>
<Footer />
</div>
);
function RocketPart({ reference, name, description }) {
return (
<Container className={classes.relative}>
<div ref={reference}>
<Grid container className={classes.rocketPartText}>
<Grid item xs={8} sm={6} md={4}>
<Box mb={6}>
<Typography variant='h4'>{name}</Typography>
</Box>
<Typography variant='h5'>{description}</Typography>
</Grid>
</Grid>
</div>
</Container>
);
}
function StatsNumber({ number, label }) {
return (
<Grid item xs={6} sm={3}>
<Typography variant='h2' className='statsNum'>
{number}
</Typography>
<Typography variant='h5'>{label}</Typography>
</Grid>
);
}
function Timeline(ref, duration) {
const timeline = gsap.timeline({
scrollTrigger: ScrollTrigger(ref, duration),
});
timeline
.addLabel('start')
.fromTo(
ref.current,
{ opacity: 0, yPercent: 5 },
{ duration: 1, opacity: 1, yPercent: 0 },
'-=1' //increases the pause duration at 100% opacity
)
.to(
ref.current,
{
duration: 1,
opacity: 0,
yPercent: -5,
display: 'none',
},
'+=1' //increases the pause duration at 100% opacity
)
.addLabel('end');
return timeline;
}
function ScrollTrigger(ref, duration) {
const scrollTrigger = {
trigger: ref.current,
pin: true,
scrub: true,
start: `top ${
50 - (ref.current.clientHeight / window.innerHeight) * 50
}%`, // makes the content appear in the center of the screen
end: '+=' + duration,
// markers: true //debug markers
};
return scrollTrigger;
}
}