-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
311 lines (277 loc) · 11.1 KB
/
index.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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/html">
<head>
<link rel="icon" href="images/Logo.png">
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<title>Jackson Elia</title>
<link rel="stylesheet" type="text/css" href="styles/style.css">
<link rel="stylesheet" type="text/css" href="styles/header.css">
<link rel="stylesheet" type="text/css" href="styles/buttons.css">
<link rel="stylesheet" type="text/css" href="styles/matrix-text.css">
<link rel="stylesheet" type="text/css" href="styles/gallery.css">
<link rel="stylesheet" type="text/css" href="styles/language-showcase.css">
<link rel="stylesheet" type="text/css" href="styles/footer.css">
<link rel="stylesheet" type="text/css" href="styles/sliders.css">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/css/ionicons.min.css">
<link href='https://fonts.googleapis.com/css?family=JetBrains Mono' rel='stylesheet'>
</head>
<body>
<header>
<div id="header-container">
<a href="index.html" id="logo"><img src="images/Logo.png" alt="Logo made by Sydney"></a>
<input id="main-nav-toggle" type="checkbox"/>
<label class="main-nav-button-container" for="main-nav-toggle">
<div class="main-nav-button" id="top-nav-button"></div>
<div class="main-nav-button" id="mid-nav-button"></div>
<div class="main-nav-button" id="bot-nav-button"></div>
</label>
<ul id="main-nav-list">
<li class="main-nav-item"><a href="index.html">Home</a></li>
<li class="main-nav-item"><a href="about.html">About</a></li>
<li class="main-nav-item"><a href="random-project.html">Random Project</a></li>
</ul>
<div id="header-background"></div>
</div>
</header>
<section class="greeting-section">
<div id="matrix-text">
<div class="main-container">
<h1>Hi, I'm Jack.</h1>
</div>
<div class="matrix-header-menu">
<input type="range" id="matrix-speed-slider" value="20">
<input type="range" id="matrix-density-slider" value="50">
<div id="typed-out-box">
<div id="typed-out-text">Play with these -></div>
</div>
<div id="matrix-header-menu-background"></div>
</div>
</div>
</section>
<section class="portfolio-section">
<div class="portfolio-container">
<h2>My Portfolio</h2>
<div class="portfolio-div">
<p>These are some of my favorite projects. Each of them took a lot of effort to make and took a lot
of bug squishing. With each one of them, I tried to learn something new!</p>
<a class="button1" href="https://github.com/jacksonelia" target="_blank"><span
class="button1span">See My Github</span></a>
</div>
<hr>
<!--the height to width ratio for these pictures should be about .8-->
<div class="portfolio-gallery">
<div class="inner-portfolio-gallery">
<div class="cell" tabindex="-1">
<a href="random-project.html#TitaniumTigersWebsite">
<div class="content">
<img src="images/titaniumtigerswebsite.png" alt="Titanium Tigers Website" style="width:100%">
<h3>4829 Website</h3>
<p>The website I made for my robotics team.</p>
</div>
</a>
</div>
<div class="cell" tabindex="-1">
<a href="random-project.html#Block_Drop">
<div class="content">
<img src="images/block%20drop%20image.png" alt="Block Drop" style="width:100%">
<h3>Block Drop</h3>
<p>A block-puzzle mobile game</p>
</div>
</a>
</div>
<div class="cell" tabindex="-1">
<a href="random-project.html#Bouncy">
<div class="content">
<img src="images/Bouncy%20Image.png" alt="Bouncy" style="width:100%">
<h3>Bouncy</h3>
<p>A chaotic bullet-hell game</p>
</div>
</a>
</div>
<div class="cell" tabindex="-1">
<a href="random-project.html#Ethermine_Tracker">
<div class="content">
<img src="images/Ethermine%20Tracker.png" alt="Ethermine Tracker" style="width:100%">
<h3>Ethermine Tracker</h3>
<p>Tracks Ethereum mining data</p>
</div>
</a>
</div>
<div class="cell" tabindex="-1">
<a href="random-project.html#AirbrakesV2">
<div class="content">
<img src="images/RocketryLogoCropped.png" alt="Tacho Lycos" style="width:100%">
<h3>AirbrakesV2</h3>
<p>The code for my team's Airbrakes rocket</p>
</div>
</a>
</div>
<div class="cell" tabindex="-1">
<a href="random-project.html#TigerLib">
<div class="content">
<img src="images/tigerliblogocropped.jpg" alt="TigerLib" style="width:100%">
<h3>TigerLib</h3>
<p>The code I've made for FRC</p>
</div>
</a>
</div>
</div>
</div>
</div>
</section>
<section class="knowledge-section" id="knowledge_section_id">
<div class="knowledge-container">
<h2>My Knowledge & Experience</h2>
<div class="knowledge-div">
<p>
I love computer science and programming because of how much there is to learn. Since I
first learned how to program with Swift, I've been learning new things and have been trying
to expand my knowledge. In fact, I made this website to learn more about web
development!
</p>
</div>
<hr>
<div class="knowledge-showcase">
<div class="language-box">
<h3>Languages:</h3>
<div class="languages">
<div class="language" onclick="selectLanguage(this)">
<div class="center">
<p class="language-num">0</p>
<p class="language-content">Python</p>
</div>
</div>
<div class="language" onclick="selectLanguage(this)">
<div class="center">
<p class="language-num">1</p>
<p class="language-content">Java</p>
</div>
</div>
<div class="language" onclick="selectLanguage(this)">
<div class="center">
<p class="language-num">2</p>
<p class="language-content">Swift</p>
</div>
</div>
<div class="language" onclick="selectLanguage(this)">
<div class="center">
<p class="language-num">3</p>
<p class="language-content">JS/TS</p>
</div>
</div>
<div class="language" onclick="selectLanguage(this)">
<div class="center">
<p class="language-num">4</p>
<p class="language-content">C/C++</p>
</div>
</div>
</div>
</div>
<div class="outer-language-info-box">
<div class="language-info-box">
<div class="progress-bars">
<div class="chart">
<span>Confidence:</span>
<footer>
<div class="progress-bar" id="confidence-bar"></div>
</footer>
</div>
<div class="chart">
<span>Enjoyment:</span>
<footer>
<div class="progress-bar" id="enjoyment-bar"></div>
</footer>
</div>
</div>
<p class="language-description">
Python was the second language I learned. It's the one I'm most comfortable with, and
I've used it to make a variety of things.
</p>
<div class="example-projects">
<div class="project" id="project1">
<div class="project-inner">
<div class="project-top">
<a href="random-project.html#Mazer">
<span>Mazer</span>
</a>
<p>Make a maze and watch as it is solved!</p>
</div>
<div class="project-bottom">
<p>PyQt5</p>
<a href="https://github.com/jacksonelia/Mazer" target="_blank">
<i class="ion-social-github-outline"></i>
</a>
</div>
</div>
</div>
<div class="project" id="project2">
<div class="project-inner">
<div class="project-top">
<a href="random-project.html#DCS_Terminal">
<span>DCS Terminal</span>
</a>
<p>Automatically solves any course on Datacamp!</p>
</div>
<div class="project-bottom">
<p>Selenium</p>
<a href="https://github.com/jacksonelia/DCS_Terminal" target="_blank">
<i class="ion-social-github-outline"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="contact-section" id="contact-section-id">
<div class="contact-container">
<h2>Contact Me</h2>
<div class="contact-div">
<p>If you want to contact me for any reason, even to say hi, my inbox is always open! I'll
try to get back to you as soon as possible.</p>
<a class="button1" href="mailto:[email protected]"><span
class="button1span">Send Email</span></a>
</div>
</div>
</section>
<div class="footer">
<canvas id="conway-footer"></canvas>
<footer>
<div class="social">
<a href="https://www.instagram.com/jackgeorgeelia/" target="_blank"><i
class="icon ion-social-instagram"></i></a>
<a href="https://leetcode.com/traptricker/" target="_blank"><i class="icon ion-code"></i></a>
<a href="https://github.com/jacksonelia" target="_blank"><i
class="icon ion-social-github"></i></a>
<a href="mailto:[email protected]" target="_blank"><i
class="icon ion-ios-email"></i></a></div>
<ul class="list-inline">
<li class="list-inline-item"><a href="index.html">Home</a></li>
<li class="list-inline-item"><a href="about.html">About Me</a></li>
<li class="list-inline-item"><a href="index.html#knowledge_section_id">My Skills</a></li>
<li class="list-inline-item"><a href="index.html#contact-section-id">Contact Me</a></li>
<li class="list-inline-item"><a href="random-project.html">See a Random Project</a></li>
</ul>
<p class="copyright">Jackson Elia © 2024</p>
</footer>
<div id="conway-footer-menu">
<button id="start-button" onclick="startGame(1)"><i class="icon ion-refresh"></i></button>
<input type="range" id="conway-speed-slider">
<input type="range" id="conway-density-slider">
<button id="expand-button" onclick="expandConway()"><i class="icon ion-chevron-down"></i>
</button>
</div>
</div>
<script src="scripts/language-showcase.js"></script>
<script src="scripts/matrix-text.js"></script>
<script src="scripts/conways-game-of-life.js"></script>
<script src="scripts/mobile-intersect-hover.js"></script>
<script src="scripts/change-theme-color.js" defer></script>
</body>
</html>