-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinteractive-art.html
238 lines (229 loc) · 12.9 KB
/
interactive-art.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Cache-control" content="no-cache">
<meta http-equiv='expires' content='0'>
<meta http-equiv='pragma' content='no-cache'>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous"> <link rel="icon" href="/favicon.png" sizes="32x32">
<link rel="icon" href="/icon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="/iphone-icon.png">
<link rel="manifest" href="/manifest.json">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script> <link href="styles.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-KsvD1yqQ1/1+IA7gi3P0tyJcT3vR+NdBTt13hSJ2lnve8agRGXTTyNaBYmCR/Nwi" crossorigin="anonymous"></script>
<link href="styles.css" rel="stylesheet">
<title>Interactive Art</title>
</head>
<body>
<main class="transparentBG fade-to-black">
<header class="header-color" style="text-align: center">
<video class="img-fluid mx-auto" autobuffer="true" autoplay playsinline loop muted style="display:block;">
<source src="video/Banner-HEVC.mov" type="video/mp4; codecs=hvc1">
<source src="video/Banner-VP9.webm" type="video/webm">
Your browser does not support the video tag.
</video>
</header>
<div class="horizontal-line d-md-none"></div>
<nav class="navbar navbar-expand-lg navbar-dark bg-gradient responsive-padding" style="background-color: #325A80;">
<a class="navbar-brand brand-margin hide-on-desktop" style="color: #FFFFFF" href="index.html">Paul Thompson | Software Engineer</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav responsive-padding">
<a class="nav-link" href="index.html">Home</a>
<a class="nav-link active" aria-current="page" href="interactive-art.html">Interactive Art</a>
<a class="nav-link" href="programming.html">Programming</a>
<a class="nav-link" href="coding-streams.html">Coding Streams</a>
<a class="nav-link" href="contact.html">Contact Me</a>
</div>
</div>
</nav>
<div class="content">
<div class ="responsive-margin">
<!---Joust Section-->
<h3 id="joustPage"><b>Joust</b></h3>
<p>My remake of the 1982 Williams Electronics game, Joust. Built in <a href="https://love2d.org" target="_blank" rel="noopener noreferrer" class="link">Love2d</a> with <a href="https://www.lua.org/" target="_blank" rel="noopener noreferrer" class="link">Lua</a>. My version comes with 25 waves of enemies, a two-player mode, and a leaderboard!</p>
<div style="margin-left:-10px; margin-right: -10px">
<div class="video-container text-center">
<video playsinline autoplay muted loop>
<source src="./video/joust.webm" type="video/webm">
<source src="./video/joust.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</div>
<div class="text-center" style="margin-left: -10px; margin-right: -10px;">
<canvas id="canvas2" width="500" height="120" style="max-width:100%; background:#000; vertical-align:middle;"></canvas>
</div>
<div class="button-container" style="margin-left: -6px; margin-right: -6px;">
<div class="executables-adjust">
<button type="button"
class="btn btn-primary"
onclick="window.open('https://github.com/findingfocus/joust/releases/download/v1.1/Joust_win32-v1.1.zip')"
title="Joust_win32-v1.1.zip">
Download <img class="icon-size icon-adjust" src="./icons/windows-icon.png" alt="Joust Windows Executable Download" title="Joust Windows Executable Download">
</button>
<button type="button"
class="btn btn-primary"
onclick="window.open('https://github.com/findingfocus/joust/releases/download/v1.1/Joust_osx-v1.1.zip')"
title="Joust_osx-v1.1.zip">
Download <img class="icon-size icon-adjust" src="./icons/apple-icon.png" alt="Joust MacOS Executable Download" title="Joust MacOS Executable Download">
</button>
<button type="button"
class="btn btn-primary"
onclick="window.open('https://github.com/findingfocus/joust/releases/download/v1.1/Joust_linux-v1.1.tar.gz')"
title="Joust_linux-v1.1.tar.gz">
Download <img class="icon-size icon-adjust" src="./icons/linux-icon.png" alt="Joust Linux Executable Download" title="Joust Linux Executable Download">
</button>
</div>
</div>
<div class="text-center source-code-adjust">
<button type="button"
class="btn btn-success"
onclick="window.open('https://github.com/findingfocus/joust.git', '_blank', 'noreferrer')"
title="https://github.com/findingfocus/joust.git">
Source Code
</button>
</div>
<!---Tashio Section-->
<h3 id="tashioPage"><b>Tashio Tempo</b></h3>
<p>Tashio Tempo is my new game inspired by Link's Awakening on Game Boy. It is a top-down game filled with adventure, magic, and music. I released the current version of the game featuring gecko entities, spell-casting abilities, and several screens to explore!</p>
<p>I am currently experimenting with a web deployment at <a href="https://tashio.dev" target="_blank" rel="noopener noreferrer" class="link">tashio.dev</a></p>
<div style="margin-left:-10px; margin-right: -10px">
<div class="video-container text-center">
<video playsinline autoplay muted loop>
<source src="./video/tashio.webm" type="video/webm">
<source src="./video/tashio.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</div>
<div class="button-container" style="margin-left: -6px; margin-right: -6px;">
<div class="executables-adjust">
<button type="button"
class="btn btn-primary"
onclick="window.open('https://github.com/findingfocus/tashio/releases/download/v1.1/Tashio_win32-v1.1.zip', '_blank', 'noreferrer')"
title="Tashio_win32-v1.1.zip">
Download <img class="icon-size icon-adjust" src="./icons/windows-icon.png" alt="Tashio Windows Executable Download" title="Tashio Windows Executable Download">
</button>
<button type="button"
class="btn btn-primary"
onclick="window.open('https://github.com/findingfocus/tashio/releases/download/v1.1/Tashio_osx-v1.1.zip', '_blank', 'noreferrer')"
title="Tashio_osx-v1.1.zip">
Download <img class="icon-size icon-adjust" src="./icons/apple-icon.png" alt="Tashio MacOS Executable Download" title="Tashio MacOS Executable Download">
</button>
<button type="button"
class="btn btn-primary"
onclick="window.open('https://github.com/findingfocus/tashio/releases/download/v1.1/Tashio_linux-v1.1.tar.gz', '_blank', 'noreferrer')"
title="Tashio_linux-v1.1.tar.gz">
Download <img class="icon-size icon-adjust" src="./icons/linux-icon.png" alt="Tashio Linux Executable Download" title="Tashio Linux Executable Download">
</button>
</div>
</div>
<div class="text-center source-code-adjust">
<button type="button"
class="btn btn-success"
onclick="window.open('https://github.com/findingfocus/tashio.git', '_blank', 'noreferrer')"
title="https://github.com/findingfocus/tashio.git">
Source Code
</button>
</div>
<!---Weather Page-->
<h3 id="weatherPage"><b>Weather</b></h3>
<p>This is my submission to the 2022 OneLoneCoder Code Jam. Click below to play a small demo, or download the executable from the GitHub release page to play to full version with interactive sound effects!</p>
<div class="text-center" style="margin-left: -10px; margin-right: -10px;">
<canvas id="canvas1" width="500" height="500" style="max-width:100%;background:#000;vertical-align:middle;"></canvas>
</div>
<div style="margin-top: 10px; text-align: center">
<p><b>Mobile Instructions:</b></p>
<p>Tap the very edges of the game's canvas to fly</p>
<p><b>Desktop Instructions:</b></p>
<p>Use the "WASD" keys to fly in different directions.</p>
</div>
<div class="button-container" style="margin-left: -6px; margin-right: -6px;">
<div class="executables-adjust" style="margin-top: 1rem;">
<button type="button"
class="btn btn-primary"
onclick="window.open('https://github.com/findingfocus/weather/releases/download/v1.0/Weather_win32-v1.0.zip', '_blank', 'noreferrer')"
title='Weather_win32-v1.0.zip'>
Download <img class="icon-size icon-adjust" src="./icons/windows-icon.png" alt="Weather Windows Executable Download" title="Weather MacOS Executable Download">
</button>
<button type="button"
class="btn btn-primary"
onclick="window.open('https://github.com/findingfocus/weather/releases/download/v1.0/Weather_osx-v1.0.zip', '_blank', 'noreferrer')"
title="Weather_osx-v1.0.zip">
Download <img class="icon-size icon-adjust" src="./icons/apple-icon.png" alt="Weather MacOS Executable Download" title="Weather Windows Executable Download">
</button>
<button type="button"
class="btn btn-primary"
onclick="window.open('https://github.com/findingfocus/weather/releases/download/v1.0/Weather_linux-v1.0.tar.gz', '_blank', 'noreferrer')"
title="Weather_linux-v1.0.tar.gz">
Download <img class="icon-size icon-adjust" src="./icons/linux-icon.png" alt="Weather Linux Executable Download" title="Weather Linux Executable Download">
</button>
</div>
</div>
<div class="text-center source-code-adjust">
<button type="button"
class="btn btn-success"
onclick="window.open('https://github.com/findingfocus/weather.git', '_blank', 'noreferrer')"
title='https://github.com/findingfocus/weather.git'>
Source Code
</button>
</div>
<!---Tak Section-->
<h3 id="takPage"><b>Tak: A Beautiful Game</b></h3>
<p>Tak is a board game from the novel "The Wise Man's Fear", created by James Ernest and Patrick Rothfuss. I programmed my own version of the game in Love2d and Lua. It is a competitive board game for two players, so grab a friend and let the game commence!</p>
<div style="margin-left:-10px; margin-right: -10px">
<div class="video-container text-center">
<video playsinline autoplay muted loop>
<source src="./video/tak.webm" type="video/webm">
<source src="./video/tak.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</div>
<div class="button-container" style="margin-left: -6px; margin-right: -6px;">
<div class="executables-adjust">
<button type="button"
class="btn btn-primary"
onclick="window.open('https://github.com/findingfocus/tak/releases/download/v1.0/Tak_win32-v1.0.zip', '_blank', 'noreferrer')"
title="Tak_win32-v1.0.zip">
Download <img class="icon-size icon-adjust" src="./icons/windows-icon.png" alt="Tak Windows Executable Download" title="Tak Windows Executable Download">
</button>
<button type="button"
class="btn btn-primary"
onclick="window.open('https://github.com/findingfocus/tak/releases/download/v1.0/Tak_osx-v1.0.zip', '_blank', 'noreferrer')"
title="Tak_osx-v1.0.zip">
Download <img class="icon-size icon-adjust" src="./icons/apple-icon.png" alt="Tak MacOS Executable Download" title="Tak MacOS Executable Download">
</button>
<button type="button"
class="btn btn-primary"
onclick="window.open('https://github.com/findingfocus/tak/releases/download/v1.0/Tak_linux-v1.0.tar.gz', '_blank', 'noreferrer')"
title="Tak_linux-v1.0.tar.gz">
Download <img class="icon-size icon-adjust" src="./icons/linux-icon.png" alt="Tak Linux Executable Download" title="Tak Linux Executable Download">
</button>
</div>
</div>
<div class="text-center source-code-adjust">
<button type="button"
class="btn btn-success"
onclick="window.open('https://github.com/findingfocus/tak.git', '_blank', 'noreferrer')"
title="https://github.com/findingfocus/tak.git">
Source Code
</button>
</div>
<div class="text-center">
Demos on this site are made using the <a class="link" href="https://love2d.org/" target="_blank"><b>Love Framework</b></a>
(<a class="link" href="https://raw.githubusercontent.com/love2d/love/main/license.txt" target="_blank"><b>License</b></a>)
<br>Packaged using <a class="link" href="https://schellingb.github.io/LoveWebBuilder/" target="_blank"><b>Love Web Builder</b></a>
</div>
<br>
</div>
</div>
</main>
<script type="text/javascript" src="weather1.js"></script>
<script type="text/javascript" src="joust.js"></script>
</body>
</html>