-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.html
More file actions
357 lines (264 loc) · 16.9 KB
/
portfolio.html
File metadata and controls
357 lines (264 loc) · 16.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Favicon -->
<link rel="icon" type="image/png" href="./assets/images/favicon.ico">
<!-- Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous">
<!-- CSS -->
<link rel="stylesheet" href="./assets/css/style.css">
<!-- Meta Data -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Jacob Morris</title>
<!-- JQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light">
<a id="move" class="navbar-brand" href="#">
<h1> Jacob Morris</h1>
</a>
<ul class="navbar-nav ml-auto">
<li class="nav-item ">
<a class="nav-link" href="jacobthomasmorris.com" id="ab3">
About
</a>
</li>
<li class="nav-item active">
<a id="cn3" class="nav-link" href="./contact">
Contact
</a>
</li>
<li class="nav-item">
<a id="pr3" class="nav-link" href="./portfolio">
<b>
<u>
Portfolio
</u>
</b>
</a>
</li>
</ul>
</nav>
<br>
<br>
<br>
<br>
<div class="container-fluid">
<div class="row" id=" tContent ">
<div class="col-lg-1"></div>
<div id="pcontent" class="col-lg-10">
<div class="row">
<div class="col-md-12">
<br>
</div>
</div>
<div class="row">
<div class="col-md-4">
<a id="myBtn1" target="blank">
<div class="is" id="one">
<div class="ban">Hangman</div>
</div>
</a>
<a id="myBtn2" target="blank">
<div class="is" id="two">
<div class="ban">Trivia</div>
</div>
</a>
</div>
<div class="col-md-4">
<a id="myBtn4" target="blank">
<div class="is" id="three">
<div class="ban">Event Dash</div>
</div>
</a>
<a id="myBtn3" target="blank">
<div class="is" id="four">
<div class="ban">RPG Game</div>
</div>
</a>
</div>
<div class="col-md-4">
<a id="myBtn5" target="blank">
<div class="is" id="five">
<div class="ban">Office Giphy</div>
</div>
</a>
<a id="myBtn6" target="blank">
<div class="is" id="six">
<div class="ban">Tatu</div>
</div>
</a>
</div>
</div>
</div>
</div>
<div class="col-lg-1"></div>
<div id="myModal1" class="modal">
<div class="modal-content">
<span id="close1" class="close">×</span>
<br>
<div class="id" id="one">
<div class="ban2">Hangman Game
</div>
</div>
<div class="id2">
<h2>Hangman Game</h2>
This is one of the first assignments I did through the U of U Full Stack Development Bootcamp. The point of the assignment was to practice dynamically updated HTML and CSS powered by JavaScript.
<br>
<br>
The app uses key events to listen for letters that a user will type. The dynamically updated HTML will inform the user whether or not their key stroke is part of the word they are trying to guess. The app also keeps track of the number of wins and losses.
<br>
<br>
Interestingly enough, it turns out that comic book action words use rare combinations of letters, so they are pretty darn hard to guess. Give it a shot!
<br>
<br>
Link to App: <br><a target="blank" class="a2" href="https://jacobugath.github.io/Word-Guess-Game/" >https://jacobugath.github.io/Word-Guess-Game/</a>
<br>
<br>
Link to Code: <br><a class="a2" target="blank" href="https://github.com/Jacobugath/Word-Guess-Game" >https://github.com/Jacobugath/Word-Guess-Game</a>
</div>
</div>
</div>
<div id="myModal2" class="modal">
<div class="modal-content">
<span id="close2" class="close">×</span>
<br>
<div class="id" id="two2">
<div class="ban2">Triva Game
</div>
</div>
<div class="id2">
<h2>Triva Game</h2>
This is an assignment I did during the first half of the U of U Full Stack Development Bootcamp. The point of the assignment was to practice working with API's and JavaScript timers.
<br>
<br>
The app pulls trivia questions from an API and presents a form with multiple choice options. The user has a limited amount of time to finish each question, after which the question is marked incorrect.
<br>
<br>
If the player chooses the incorrect answer, they are told they are wrong and given the correct answer.
<br>
<br>
Link to App:<br> <a class="a2" target="blank" href="https://jacobugath.github.io/TriviaGame/" >https://jacobugath.github.io/TriviaGame/</a>
<br>
<br>
Link to Code:<br> <a class="a2" target="blank" href="https://github.com/Jacobugath/TriviaGame" >https://github.com/Jacobugath/TriviaGame</a>
</div>
</div>
</div>
<div id="myModal3" class="modal">
<div class="modal-content">
<span id="close3" class="close">×</span>
<br>
<div class="id" id="four">
<div class="ban2">RPG Game
</div>
</div>
<div class="id2">
<h2>RPG Game</h2>
This is an assignment I did during the first half of the U of U Full Stack Development Bootcamp. The point of the assignment was to practice working with CSS animations and jQuery.
<br>
<br>
The game features office workers hurling fireballs at each other. The best part was getting fireballs to fly across the screen and making them increase in size as they do more damage.
<br>
<br>
The object of the game is to defeat all other office workers without your health dropping to zero. The player's damage doubles with each attack, while the defenders damage remains static.
<br>
<br>
Link to App: <br><a class="a2" target="blank" href="https://jacobugath.github.io/unit-4-game/" >https://jacobugath.github.io/unit-4-game/</a>
<br>
<br>
Link to Code:<br> <a class="a2" target="blank" href="https://github.com/Jacobugath/unit-4-game" >https://github.com/Jacobugath/unit-4-game</a>
</div>
</div>
</div>
<div id="myModal4" class="modal">
<div class="modal-content">
<span id="close4" class="close">×</span>
<br>
<div class="id" id="three">
<div class="ban2">Event Dash
</div>
</div>
<div class="id2">
<h2>Event Dash</h2>
This is an assignment I did to conclude the first half of the U of U Full Stack Development Bootcamp. This was a group project and the purpose of it was to get experience working in a group, and using GitHub and API's. It was also one of the first assignments that involved writing some of the backend using Firebase.
<br>
<br>
Users can sign in with Twitter credentials and Firebase Authentication to view the events they've been invited to. At a glance they see a main page with a thumbnail of each event. They can click on the Event Info button and open a screen with full details of the event.
<br>
<br>
Link to App: <br><a class="a2" target="blank" href="https://chancy23.github.io/Event-Dash/" >https://chancy23.github.io/Event-Dash/</a>
<br>
<br>
Link to Code: <br><a target="blank" class="a2" href="https://github.com/chancy23/Event-Dash" >https://github.com/chancy23/Event-Dash</a>
</div>
</div>
</div>
<div id="myModal5" class="modal">
<div class="modal-content">
<span id="close5" class="close">×</span>
<br>
<div class="id" id="five">
<div class="ban2">Office Giphy
</div>
</div>
<div class="id2">
<h2>Office Giphy</h2>
This is an assignment I did to during the second half of the U of U Full Stack Development Bootcamp. The purpose of this assignment was to practice working with ajax and the GIPHY API.
<br>
<br>
This app uses the GIPHY API to make a dynamic web page that populates with gifs of my choice. I chose a theme using Gifs from my favorite TV show 'The Office' To finish this task, I had to call the GIPHY API and use JavaScript and jQuery to change the HTML the site.
<br>
<br>
Link to App:<br> <a target="blank" class="a2" href="https://jacobugath.github.io/Giphy/" >https://jacobugath.github.io/Giphy/</a>
<br>
<br>
Link to Code:<br> <a target="blank" class="a2" href="https://github.com/Jacobugath/Giphy" ><br>https://github.com/Jacobugath/Giphy</a>
</div>
</div>
</div>
<div id="myModal6" class="modal">
<div class="modal-content">
<span id="close6" class="close">×</span>
<br>
<div class="id" id="six">
<div class="ban2">Tatu
</div>
</div>
<div class="id2">
<h2>Tatu</h2>
This is the final project I did through the U of U Full Stack Development Bootcamp. The point of the assignment was to practice working with a group, and writing an entire app from end to end. This app was written using the MERN stack.
<br>
<br>
This app allows new users to create an account login information using the Create Account Button and corresponding form on the Home Page and then search the database of artist's that have accounts on Tatu and have uploaded images. The app has an extensive list of both styles and body placement options that users can use to narrow down their search.
<br>
<br>
Link to App:<br> <a
class="a2" target="blank" href="https://tatuappv2.herokuapp.com" >https://tatuappv2.herokuapp.com</a>
<br>
<br>
Link to Code:<br> <a class="a2" target="blank" href="https://github.com/penajtokyo/tatu" >https://github.com/penajtokyo/tatu</a>
</div>
</div>
</div>
<div id="bottom">
View my <a href="https://www.linkedin.com/in/jacobthomasmorris/">Linkedin</a> |
View my <a href="https://github.com/Jacobugath">Gethub</a> | My email: <span id="teal">jacobthomasmorris@gmail.com</span>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
<script src="./assets/index.js"></script>
script
<src="https://code.jquery.com/jquery-3.3.1.js"
integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
crossorigin="anonymous"></script>
</body>
</html>