-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (22 loc) · 832 Bytes
/
Copy pathindex.html
File metadata and controls
22 lines (22 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<script type="text/javascript" src="bundle.js" charset="utf-8"></script>
<svg></svg>
<div id="options">
<label for="radius">Radius</label>
<input type="range" id="radius" min="10" value="300" max="500" step="50">
<br/>
<label for="multiple">Multiple</label>
<input type="range" id="multiple" min="2" value="2" max="100" step="1">
<br/>
<label for="iterations">Iterations</label>
<input type="range" id="iterations" min="10" value="200" max="300" step="1">
<br/>
<label for="points">Points</label>
<input type="range" id="points" min="3" value="100" max="200" step="1">
</div>
</body>
</html>