-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (47 loc) · 1.54 KB
/
index.html
File metadata and controls
47 lines (47 loc) · 1.54 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Fire's Fancy Shaders</title>
<link rel="icon" href="https://fav.farm/🔥" />
<script src="https://code.jquery.com/jquery-3.5.1.min.js" crossorigin="anonymous"></script>
<script src="app.mjs" type="module"></script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<main class="container">
<h1>Fire's Fancy Shaders</h1>
<div id="canvas-container">
<canvas id="amogs"></canvas>
</div>
<div id="shader-controls">
<button id="shader-previous">« Previous Shader</button>
<button id="shader-pause">Pause/Play</button>
<button id="shader-next">Next Shader »</button>
<label>
Canvas Size
<input type="number" id="canvas-size" />
</label>
<label>
Pixilated
<input type="checkbox" id="canvas-pixilated" />
</label>
<label>
Shader
<select id="shader-select"></select>
</label>
</div>
<p>Current Shader: <span id="shader-name">Loading...</span></p>
<p>State: <span id="shader-state">Loading...</span></p>
<p>All Shaders:</p>
<ol id="shader-list">
<li>Loading...</li>
</ol>
</main>
<footer class="container">
<p>Made with 🔥 by FireIsGood</p>
<p><a href="https://github.com/FireIsGood/fancy-shaders">Source Code</a></p>
</footer>
</body>
</html>