-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (48 loc) · 1.58 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>visualizr</title>
<link rel="stylesheet" href="css/styles.css" type="text/css" />
<script src="//use.edgefonts.net/source-sans-pro:n2,i2,n3,i3,n4,i4,n6,i6,n7,i7,n9,i9.js"></script>
</head>
<body>
<div class="visualizr">
<div class="controls">
<div class="field">
<label for="width">Width</label>
<input type="range" name="width" value="20">
</div>
<div class="field">
<label for="height">Height</label>
<input type="range" name="height" value="50">
</div>
<div class="field">
<label for="gap">Gap</label>
<input type="range" name="gap" value="25">
</div>
<div class="field">
<label for="delay">Delay</label>
<input type="range" name="delay" value="8">
</div>
<div class="field">
<label for="hue">Hue Offset</label>
<input type="range" name="hue" value="0">
</div>
<div class="field">
<label style="margin-right:1em">Animate</label>
<input type="radio" name="animate" value="out" checked> <span>Out</span>
<input type="radio" name="animate" value="in"> <span>In</span>
<input type="radio" name="animate" value="auto"> <span>Auto</span>
</div>
<div class="field">
<label>Auto Delay</label>
<input type="range" name="auto-delay" value="50">
</div>
</div>
<button class="playpause"></button>
<canvas></canvas>
</div>
<script type="text/javascript" charset="utf-8" src="js/bundle.js"></script>
</body>
</html>