-
Notifications
You must be signed in to change notification settings - Fork 0
/
showcase.html
219 lines (210 loc) · 8 KB
/
showcase.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Projects</title>
<link rel="stylesheet" href="CSS/showcaseStyle.css">
<link rel="stylesheet" href="https://cdn.linearicons.com/free/1.0.0/icon-font.min.css">
</head>
<body>
<!-- Preloader Screen -->
<div class="preloader">
<p><img src="MISC/logo.png" style="width:150px; height:150px;"></img></p>
<svg width="200" height="200" viewBox="0 0 100 100">
<polyline class="line-cornered stroke-animation" points="0,0 100,0 100,100" stroke-width="10" fill="none"></polyline>
<polyline class="line-cornered stroke-animation" points="0,0 0,100 100,100" stroke-width="10" fill="none"></polyline>
</svg>
</div>
<!-- Logo-->
<div class="logo">
<a href="index.html"><img src="MISC/logo.png" style="width:150px; height:150px;"></img></a>
</div>
<!-- Background Globe -->
<div id="backgroundAnimation"></div>
<!-- Card Showcase -->
<div id="filter">
</div>
<div id="filterShadow"></div>
<div class="btn-container">
<a class="prev" onclick="moveSlideShow(-1)">❮</a>
<a class="next" onclick="moveSlideShow(1)">❯</a>
</div>
<section class="card-list">
<!-- Head Card -->
<article class="headCard">
<header class="card-header">
<p>2019 - Present</p>
<h1><strong>PROJECTS</strong></h1>
</header>
</div>
<div>
<a href="index.html"><i class="lnr lnr-home"></i></a>
<a href="index.html#aboutContainer"><i class="lnr lnr-user"></i></a>
<a></a>
</div>
</article>
<!-- Article # 1-->
<article class="card" id="1">
<header class="card-header">
<p>January 2021</p>
<h2>PicToCartoon</h2>
</header>
<div class="descriptionContainer">
<div class="description"><a href="https://pictocartoon.herokuapp.com/" onclick="refreshCards()" target="_blank"><i>View Project</i></a></div>
A fun project to convert
a picture into a cartoon using
Tensorflow 2 and Google QuickDraw.
</div>
</div>
<div class="tags">
<a href="#">Python</a>
<a href="#">Flask</a>
<a href="#">TensorFlow</a>
<a href="#">QuickDraw API</a>
<a href="#">HTML/CSS/JS</a>
<a href="#">OpenCV</a>
</div>
</article>
<!-- Article # 2-->
<article class="card" id="2">
<header class="card-header">
<p>September 2020</p>
<h2>Sorting Visualizer</h2>
</header>
<div class="descriptionContainer">
<div class="description"><a href="sortingVisualizer.html" onclick="refreshCards()" target="_blank"><i>View Project</i></a></div>
A web app that visualizes
different sorting algorithms at various
speeds. It also allows you to pause,
play, and interchange algorithms.
</div>
</div>
<div class="tags">
<a href="#">html</a>
<a href="#">css</a>
<a href="#">jQuery</a>
<a href="#">Async/Await</a>
</div>
</article>
<!-- Article # 3-->
<article class="card" id="3">
<header class="card-header">
<p>August 2020</p>
<h2>Audio Visualizer</h2>
</header>
<div class="descriptionContainer">
<div class="description"><a href="audioVisualizer.html" onclick="refreshCards()" target="_blank"><i>View Project</i></a></div>
A web app that visualizes audio using the soundcloud API to
grab selected songs and convert the audio into arrays of
frequency data with the HTML5 Web Audio API.
</div>
</div>
<div class="tags">
<a>html</a>
<a>css</a>
<a>jQuery</a>
<a>JSON</a>
</div>
</article>
<!-- Article # 4-->
<article class="card" id="4">
<header class="card-header">
<p>April 2020</p>
<h2>Dynamic Memory Allocator</h2>
</header>
<div class="descriptionContainer">
<div class="description"><a href="https://github.com/IainT52/Dynamic-Memory-Allocator" onclick="refreshCards()" target="_blank"><i>View on Github</i></a></div>
An implementation of malloc, calloc, realloc, and free as
a multi-pool allocator. Capable of running many
single-threaded applications.
</div>
</div>
<div class="tags">
<a href="#">C</a>
<a href="#">Makefile</a>
</div>
</article>
<!-- Article # 5-->
<article class="card" id="5">
<header class="card-header">
<p>August 2020</p>
<h2>Health Tracker Web App</h2>
</header>
<div class="descriptionContainer">
<div class="description"><a href="https://massivemuscles.herokuapp.com/" onclick="refreshCards()" target="_blank"><i>View Project</i></a></div>
Health and fitness tracker with user specific
health metrics and tracking. Designed for
all levels of fitness.
</div>
</div>
<div class="tags">
<a href="#">SQLite</a>
<a href="#">Flask</a>
<a href="#">Python</a>
<a href="#">HTML/CSS/JS</a>
</div>
</article>
<!-- Article # 6-->
<article class="card">
<header class="card-header">
<p>Fall 2019</p>
<h2>Pathfinding Visualizer</h2>
</header>
<div class="descriptionContainer">
<div class="description"><a href="https://github.com/IainT52/Pathfinding-Visualizer" onclick="refreshCards()" target="_blank"><i>View on Github</i></a></div>
Built with JS, Scala, Akka actor system as well as SocketIO for
the server. Finds the shortest path for a character to a user selected
location while avoiding impassable ”water” tiles.
</div>
</div>
<div class="tags">
<a href="#">Scala</a>
<a href="#">JS</a>
<a href="#">SocketIO</a>
</div>
</article>
<!-- Article # 7-->
<article class="card">
<header class="card-header">
<p>July 2020</p>
<h2>Personal Website</h2>
</header>
<div class="descriptionContainer">
<div class="description"><a href="#"><i></i></a></div>
If you are reading this, there is no need to explan
the what. However, the why was simple: create an elegant
portfolio with some (hopefully) cool animations to trump
a simple resume.
</div>
</div>
<div class="tags">
<a href="#">html</a>
<a href="#">css</a>
<a href="#">jQuery</a>
<a href="#">Bootstrap</a>
</div>
</article>
</section>
<!-- VantaJS plugin https://www.vantajs.com/ -->
<script src="JS/three.r119.min.js"></script>
<script src="JS/vanta.globe.min.js"></script>
<script>
VANTA.GLOBE({
el: "#backgroundAnimation",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
backgroundColor: 0x1f1f24,
color: 0x1df0de,
color2: 0xcf70ba
})
</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="JS/showcase.js"></script>
</body>
</html>