-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
455 lines (409 loc) · 17.4 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
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
<!DOCTYPE html>
<html>
<title>mattlawr</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="My name is Matthew Lawrence and I make games, videos, and other media. I am a student indie developer.">
<meta name="keywords" content="mattlawr, indie, portfolio, games, developer, computer science, student">
<meta name="author" content="Matthew Lawrence">
<link rel="stylesheet" href="css/w3.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro" rel="stylesheet">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
<style>
:root
{
--gTxtPadding: 6px;
--minWidth: 290px;
--minWidthW: 640px;
}
body,h1,h2,h3,h4,h5,h6 {
font-family: "Helvetica", sans-serif;
src: url("fonts/helvetica.woff") format('woff');
color: #c4bebd;
}
body, html {
height: 100%;
background: #080808;
background: no-repeat center fixed #232323;
/*linear-gradient(to bottom, #381310, #050505)*/
background-size: cover;
color: #c4bebd;
line-height: 1.5;
}
p {
font-size: 11pt;
}
a {
color: #a83e3e;
text-decoration: none;
}
a:hover{
color: #f2482e;
text-decoration: underline;
}
.parCent1 {
width: 80%;
min-width: var(--minWidth);
margin-left: auto;
margin-right: auto;
padding-left: 2%;
padding-right: 2%;
clear: both;
}
.grid-container-c {
width: 85%;
min-width: var(--minWidthW);
max-width: 800px;
margin-left:auto;
margin-right:auto;
/*background-color: #273737;*/
}
.grid-item-b {
width: 95%;
min-width: var(--minWidth);
height: 360px;
float: left;
background-color: #171717;
text-align: left;
margin-left: 2%;
margin-right: auto;
margin-top: 2%;
}
.grid-item-c {
width: 45.5%;
min-width: var(--minWidth);
height: 380px;
float: left;
background-color: #171717;
text-align: left;
margin-left: 2%;
margin-right: 2%;
margin-top: 1%;
margin-bottom: 1%;
}
.grid-item {
background-color: #171717;
padding: 0px;
text-align: left;
}
/* Accordion panel */
.accordion {
background-color: #1B1B1B;
cursor: pointer;
padding: 18px;
width: 100%;
margin-left: auto;
margin-right: auto;
padding-left: 0%;
padding-right: 0%;
clear: both;
text-align: left;
border: none;
outline: none;
transition: 0.4s;
}
.accordion-w {
background-color: #eee;
color: #444;
cursor: pointer;
padding: 18px;
width: 100%;
clear: both;
text-align: left;
border: none;
outline: none;
transition: 0.4s;
}
/* Add a background color to the button if it is clicked (.active class with JS), and (hover) */
.active, .accordion:hover {
background-color: #121212;
}
/* Style the accordion panel. Note: hidden by default */
.panel {
padding: 0 18px;
padding-left: 0%;
padding-right: 0%;
background-color: #232323;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
}
/* Create a Parallax Effect */
.bgimg-1, .bgimg-2, .bgimg-3 {
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
/* First image (Logo. Full height) */
.bgimg-1 {
font-family: 'Source Code Pro', monospace;
font-weight: 50;
background-image: url('images/span1.gif');
min-height: 100%;
}
/* Second image (Portfolio) */
.bgimg-2 {
background-image: url('images/thumbs/enc_bk2.png');
min-height: 350px;
}
/* Third image (Contact) */
.bgimg-3 {
background-image: url('images/thumbs/enc_bk2.png');
min-height: 350px;
}
.w3-wide {letter-spacing: 10px;}
.w3-hover-opacity {cursor: pointer;}
/* Change scaling for tablets and phones */
@media only screen and (max-device-width: 1024px) {
.bgimg-1, .bgimg-2, .bgimg-3 {
background-attachment: scroll;/* Turn off parallax scrolling */
}
.parCent1, .grid-container-c, .grid-item-c, .grid-item-b {
width: 100%;
min-width: var(--minWidth);
}
.grid-item-c, .grid-item-b {
margin-left: 0%;
}
}
</style>
<body>
<!-- First Parallax Image with Logo Text -->
<div class="bgimg-1 w3-display-container w3-animate-opacity" id="home">
<div class="w3-display-middle" style="white-space:nowrap;">
<p class="w3-center w3-xlarge w3-wide w3-opacity-min w3-text-white">
<b> MATT</b>HEW_<br><b> LAWR</b>ENCE</p>
<p class="w3-center w3-xlarge w3-wide w3-opacity-min" style="height: 80px;">
<a href="https://store.steampowered.com/app/1396870/ENCHAIN/" style="color:white">
<img title="steam" class="w3-hover-opacity" src="images/icons/w_steam.png" height=24 style="image-rendering: crisp-edges;"></img></a>
<a href="https://mattlawr.itch.io/" style="color:white">
<img title="itch.io" class="w3-hover-opacity" src="images/icons/w_itchio.png" height=24 style="image-rendering: crisp-edges;"></img></a>
<!--a href="https://gamejolt.com/@PowerSpark" style="color:white">
<img title="Game Jolt" class="w3-hover-opacity" src="images/icons/w_gamejolt.png" height=24 style="image-rendering: crisp-edges;"></img></a-->
<!--a href="http://www.indiedb.com/company/power-spark-games" style="color:white">
<img title="IndieDB" class="w3-hover-opacity" src="images/icons/w_indiedb.png" height=24 style="image-rendering: crisp-edges;"></img></a-->
<a href="https://twitter.com/mattlawrdev" style="color:white">
<i title="Twitter" class="fa fa-twitter w3-hover-opacity" style="width:24px"></i></a>
</p>
</div>
</div>
<!-- Container -->
<div>
<button class="accordion"><h3 class="parCent1">ABOUT</h3></button>
<div class="panel">
<p class="parCent1">My name is Matthew Lawrence and I make games, videos, and other media. <a href="https://mattlawr.github.io/press/presskit">presskit()</a></p>
<p class="parCent1">My hobby project is <a href="https://store.steampowered.com/app/1396870/ENCHAIN/">ENCHAIN</a>, a small, experimental first person shooter which I develop solo, along with my friend Oliver as the composer.</p>
<p class="parCent1">Below you will find a brief list of all my past projects.</p>
</div>
<button class="accordion"><h3 class="parCent1">PROJECTS</h3></button>
<div class="panel">
<div class="grid-container-c" style="height:400px">
<div class="grid-item-b">
<div style="width:55%; height:100%; float:left">
<h4 style="padding-left:4px"><b>ENCHAIN (2017-Present)</b></h4>
<img src="images/thumbs/enc_h1.png" style="width:100%; float:left;">
<p style="padding:var(--gTxtPadding); clear:both;">ENCHAIN is a retro inspired FPS
with a focus on grapple <i>chain</i> mechanics, dynamic platforming, and intertwined exploration. In development, try demo on <a href="https://store.steampowered.com/app/1396870/ENCHAIN/">Steam</a>.</p>
</div>
<div style="border-style:solid; border-width:0px; border-left-width:3px; border-color:#111111; margin-left:55%; height:100%; margin-top:-10px;">
<h6 class="w3-center" style="padding:0px; padding-top:100px;
height:80%">
<p>Solo project. Music by Oliver Trinidad</p>
<a href="https://store.steampowered.com/app/1396870/ENCHAIN/">Steam</a><br>
<a href="https://mattlawr.itch.io/enchain">Itch.io</a><br>
<a href="https://youtu.be/6CRlwX_yOvQ">Reveal Trailer</a><br>
<a href="https://mattlawr.github.io/enchain/">Website</a><br>
<a href="https://mattlawr.github.io/press/presskit/enchain">presskit()</a><br>
</h6>
</div>
</div>
<div class="grid-item-b">
<div style="width:55%; height:100%; float:left">
<h4 style="padding-left:4px"><b>Contract Killer (2021-2022)</b></h4>
<img src="images/thumbs/ckr_th1.jpg" style="width:100%; float:left;">
<p style="padding:var(--gTxtPadding); clear:both;">Contract Killer is a co-op beat 'em up featuring 4 characters and an action-packed campaign. Released on Steam in May 2022, coming soon to Nintendo Switch.</p>
</div>
<div style="border-style:solid; border-width:0px; border-left-width:3px; border-color:#111111; margin-left:55%; height:100%; margin-top:-10px;">
<h6 class="w3-center" style="padding:0px; padding-top:100px;
height:80%">
<p>Team project. I handled the core gameplay programming and design, and created the backend tools for configuring enemy and player movesets, level roads, and event triggers.</p>
<a href="https://store.steampowered.com/app/1588250/Contract_Killer/">Steam</a><br>
<a href="https://youtu.be/cET6Q6a-BP4">Reveal Trailer</a><br>
<a href="https://paperboy-games.github.io/presskit/product/index.html">presskit()</a><br>
</h6>
</div>
</div>
</div>
<!--<h4 class="parCent1">OLD PROJECTS + GAME JAMS</h4>-->
<div class="grid-container-c" style="height: 20px">
<div class="grid-item-c">
<h4 style="padding-left:var(--gTxtPadding)"><b>Harvesterado (2020)</b></h4>
<div style="background-image: url(images/thumbs/hvt_th1.png); background-size:cover; height:180px;
background-position:center;"></div>
<p style="padding-left:var(--gTxtPadding); padding-right:var(--gTxtPadding)">
Mouse-only survival farming western.<br>
<i>Created for Miz Jam 2020</i>
</p>
<p style="padding-left:var(--gTxtPadding);">
<a href="https://mattlawr.itch.io/harvesterado">Itch.io</a><br>
</p>
</div>
<div class="grid-item-c">
<h4 style="padding-left:var(--gTxtPadding)"><b>Barrel Roll (2020)</b></h4>
<div style="background-image: url(images/thumbs/brl_th1.png); background-size:cover; height:180px;
background-position:center;"></div>
<p style="padding-left:var(--gTxtPadding); padding-right:var(--gTxtPadding)">
Two-button 3D flight simulator about doing barrel rolls.<br>
<i>Created for VGDC Spring Game Jam 2020</i>
</p>
<p style="padding-left:var(--gTxtPadding);">
<a href="https://mattlawr.itch.io/barrel-roll">Itch.io</a><br>
</p>
</div>
<div class="grid-item-c">
<h4 style="padding-left:var(--gTxtPadding)"><b>Time Sweeper (2020)</b></h4>
<div style="background-image: url(images/thumbs/tsw_th1.png); background-size:cover; height:180px;
background-position:center;"></div>
<p style="padding-left:var(--gTxtPadding); padding-right:var(--gTxtPadding)">
Local multiplayer party game about surviving on a clock. Made with Alvin Wong and Brandon Foey.<br>
<i>Created for VGDC Winter Game Jam 2020</i>
</p>
<p style="padding-left:var(--gTxtPadding);">
<a href="https://mattlawr.itch.io/time-sweeper">Itch.io</a><br>
</p>
</div>
<div class="grid-item-c">
<h4 style="padding-left:var(--gTxtPadding)"><b>A Froggy Day (2019)</b></h4>
<div style="background-image: url(images/thumbs/frg_th1.png); background-size:cover; height:180px;
background-position:center;"></div>
<p style="padding-left:var(--gTxtPadding); padding-right:var(--gTxtPadding)">
One-button rain catching frog game about mechanical mastery and egg protection.<br>
<i>Created for GMTK Game Jam 2019</i>
</p>
<p style="padding-left:var(--gTxtPadding);">
<a href="https://mattlawr.itch.io/a-froggy-day">Itch.io</a><br>
</p>
</div>
<div class="grid-item-c">
<h4 style="padding-left:var(--gTxtPadding)"><b>Bionic (2014-2017)</b></h4>
<div style="background-image: url(images/thumbs/bio_th1.png); background-size:cover; height:180px;
background-position:center;"></div>
<p style="padding-left:var(--gTxtPadding); padding-right:var(--gTxtPadding)">CS-inspired multiplayer shooter with custom bot
and map support. Partial web browser support.</p>
<p style="padding-left:var(--gTxtPadding);">
<a href="https://gamejolt.com/games/bionic/96904">Game Jolt</a><br>
<a href="https://powerspark.itch.io/bionic">Itch.io</a><br>
<a href="http://www.indiedb.com/games/bionicfps">IndieDB</a>
</p>
</div>
<div class="grid-item-c">
<h4 style="padding-left:var(--gTxtPadding)"><b>Astral Fantasy (2018)</b></h4>
<div style="background-image: url(images/thumbs/ast_th1.png); background-size:cover; height:180px;
background-position:center;"></div>
<p style="padding-left:var(--gTxtPadding); padding-right:var(--gTxtPadding)">
Mixing of space physics and turn-based retro RPG elements.<br>
<i>Theme: Combine 2 Incompatible Genres</i>
</p>
<p style="padding-left:var(--gTxtPadding);">
<a href="https://powerspark.itch.io/astral-fantasy">Itch.io</a><br>
<a href="https://ldjam.com/events/ludum-dare/41/astral-fantasy">Ludum Dare Entry</a> <font size="0.8">(TOP 100 IN 5 CATEGORIES)</font>
</p>
</div>
<div class="grid-item-c">
<h4 style="padding-left:var(--gTxtPadding)"><b>Gaia (2017)</b></h4>
<div style="background-image: url(images/thumbs/gai_th1.png); background-size:cover; height:180px;
background-position:center;"></div>
<p style="padding-left:var(--gTxtPadding); padding-right:var(--gTxtPadding)">Platformer with interactive clouds used to jump through levels.
<i>Theme: Small World</i></p>
<p style="padding-left:var(--gTxtPadding);">
<a href="https://gamejolt.com/games/gaia/251843">Game Jolt</a><br>
<a href="https://powerspark.itch.io/gaia">Itch.io</a><br>
<a href="https://ldjam.com/events/ludum-dare/38/gaia">Ludum Dare Entry</a>
</p>
</div>
<div class="grid-item-c">
<h4 style="padding-left:var(--gTxtPadding)"><b>Super Battle Cycle (2017)</b></h4>
<div style="background-image: url(images/thumbs/sbc_th1.png); background-size:cover; height:180px;
background-position:center;"></div>
<p style="padding-left:var(--gTxtPadding); padding-right:var(--gTxtPadding)">Drive around a toy motorcycle swinging boxes into enemies.
<i>Theme: One Room</i></p>
<p style="padding-left:var(--gTxtPadding);">
<a href="https://gamejolt.com/games/sbc/217338">Game Jolt</a><br>
<a href="https://powerspark.itch.io/super-battle-cycle">Itch.io</a><br>
<a href="http://ludumdare.com/compo/ludum-dare-37/?action=preview&uid=38755">Ludum Dare Entry</a>
</p>
</div>
<div class="grid-item-c">
<h4 style="padding-left:var(--gTxtPadding)"><b>Fugitive Shift (2016)</b></h4>
<div style="background-image: url(images/thumbs/fug_th1.png); background-size:cover; height:180px;
background-position:center;"></div>
<p style="padding-left:var(--gTxtPadding); padding-right:var(--gTxtPadding)">Use a team of escapees with special powers
to find the exit.
<i>Theme: Shapeshift</i></p>
<p style="padding-left:var(--gTxtPadding);">
<a href="https://gamejolt.com/games/fugitive-shift/141716">Game Jolt</a><br>
<a href="https://powerspark.itch.io/fugitive-shift">Itch.io</a><br>
<a href="http://ludumdare.com/compo/ludum-dare-35/?action=preview&uid=38755">Ludum Dare Entry</a>
</p>
</div>
<div class="grid-item-c">
<h4 style="padding-left:var(--gTxtPadding)"><b>Edo Arena (2016)</b></h4>
<div style="background-image: url(images/thumbs/edo_th1.png); background-size:cover; height:180px;
background-position:center;"></div>
<p style="padding-left:var(--gTxtPadding); padding-right:var(--gTxtPadding)">Swing to leap into the air,
building combos off of enemies.
<i>Theme: Two Buttons</i></p>
<p style="padding-left:var(--gTxtPadding);">
<a href="https://gamejolt.com/games/edo-arena/113654">Game Jolt</a><br>
<a href="https://powerspark.itch.io/edo-arena">Itch.io</a><br>
<a href="http://ludumdare.com/compo/ludum-dare-34/?action=preview&uid=38755">Ludum Dare Entry</a>
</p>
</div>
</div>
<br>
</div>
<!-- Model for full size images on click
<div id="modal01" class="w3-modal w3-black" onclick="this.style.display='none'">
<span class="w3-button w3-large w3-black w3-display-topright" title="Close Modal Image"><i class="fa fa-remove"></i></span>
<div class="w3-modal-content w3-animate-zoom w3-center w3-transparent w3-padding-64">
<img id="img01" class="w3-image">
<p id="caption" class="w3-opacity w3-large"></p>
</div>
</div>-->
<!-- Third Parallax Image with Portfolio Text -->
<!--<div class="bgimg-3 w3-display-container w3-opacity-min">
<div class="w3-display-middle">
<span class="w3-xxlarge w3-text-white w3-wide">CONTACT</span>
</div>
</div>-->
</div>
<!-- Footer -->
<footer class="w3-center w3-black w3-padding w3-opacity">
<!--<a href="#home" class="w3-button w3-light-grey"><i class="fa fa-arrow-up w3-margin-right"></i></a>-->
<!--<div class="w3-xlarge w3-section">
<a href="https://twitter.com/mattlawrdev" style="color:white"><i class="fa fa-twitter w3-hover-opacity"></i></a>
<a href="https://www.facebook.com/powersparkgames" style="color:white"><i class="fa fa-facebook-square w3-hover-opacity"></i></a>
</div>-->
<div>
<p class="w3-center">© 2018-2023 Matthew Lawrence</p>
</div>
</footer>
<script>
var acc = document.getElementsByClassName("accordion");
var i;
for (i = 0; i < acc.length; i++) {
acc[i].addEventListener("click", function() {
this.classList.toggle("active");
var panel = this.nextElementSibling;
if (panel.style.maxHeight){
panel.style.maxHeight = null;
} else {
panel.style.maxHeight = panel.scrollHeight + "px";
}
});
}
</script>
</body>
</html>