-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (30 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="stylesheets/main.css">
<title>Chromatic</title>
</head>
<body>
<div id="modal">
<h1>Chromatic</h1>
<p>Created By: Travis Nguyen</p>
</div>
<div id="options">
<h2>Number of Particles</h2>
<form id="particle-form">
<input type="range" name="particlesInput" id="particle-input" value="300" min="100" max="500" oninput="particlesOutput.value = particlesInput.value"></input>
<output name="particlesOutput" id="particle-output">300</output>
</form>
<label>Effects:
<input type='checkbox' id="bubble" checked>Bubble</input>
<input type='checkbox' id="repulse">Repulse</input>
<input type='checkbox' id="edges">Edges</input>
</label>
</div>
<canvas id='canvas-container'>
</canvas>
</body>
<script src="./js/bundle.js"></script>
</html>