-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (27 loc) · 1.34 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
<!DOCTYPE html>
<html>
<head>
<title>Heatmap Particle</title>
<meta charset="utf-8">
<link rel="icon" href="img/favicon.ico"/>
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="js/canvas.js"></script>
<script src="js/vector2D.js"></script>
<script src="js/particle.js"></script>
<script src="js/main.js"></script>
</head>
<body>
<nav>
<div class="container">
<div class="option"><label>Radius</label><input type="range" id="radius" value="8" min="0" max="25"/></div>
<div class="option"><label>Blur</label><input type="range" id="blur" value="8" min="0" max="25"/></div>
<div class="option"><label>Intensity</label><input type="range" id="intensity" value="100" min="0" max="100"/></div>
<div class="option"><label>Volatility</label><input type="range" id="volatility" value="5" min="0" max="25"/></div>
<div class="option"><label>Roughness</label><input type="range" id="roughness" value="4" min="0" max="255"/></div>
<div class="option"><label>Monochrome</label><input type="checkbox" id="monochrome"></div>
<div class="option"><button onclick="zoom++;">Zoom In</button></div>
<div class="option"><button onclick="if (zoom > 1) zoom--;">Zoom Out</button></div>
</div>
</nav>
</body>
</html>