-
Notifications
You must be signed in to change notification settings - Fork 0
/
proptest.html
149 lines (129 loc) · 5.68 KB
/
proptest.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html>
<head>
<title></title>
<script src="bower_components/webcomponentsjs/webcomponents.js"></script>
<link rel="stylesheet" type="text/css" href="doodle.css">
<link rel="import" href="bower_components/simple-color-picker/simple-color-picker.html">
</head>
<body>
<div id="presetEditor">
<div id="renderArea"></div>
<div id="propertyGroup">
<select id="appSelector">
<option value="Whitney">Whitney</option>
<option value="LineFuck">LineFuck</option>
</select>
<div id="propertyGrid">
<div class="groupHeader" id="group-header-testGroup">Test Group</div>
<div class="groupContent" style="overflow: auto" id="group-content-testGroup">
<table>
<tbody><tr>
<td><span class="propName">Position</span></td><td>
</td><td>
<div id="prop-position-0">
<input type="range" id="prop-position-0-control" class="propControl slider" value="0" min="0" max="1" step="0.0001">
<input type="text" id="prop-position-0-label" class="propValue" value="0">
</div>
</td>
</tr>
<tr>
<td><span class="propName">Point Count</span></td><td>
</td><td>
<div id="prop-pointCount-1">
<input type="range" id="prop-pointCount-1-control" class="propControl slider" value="60" min="2" max="1000" step="1">
<input type="text" id="prop-pointCount-1-label" class="propValue" value="60">
</div>
</td>
</tr>
<tr>
<td><span class="propName">Duration</span></td><td>
</td><td>
<div id="prop-duration-2">
<input type="range" id="prop-duration-2-control" class="propControl slider" value="60" min="0.001" max="500" step="0.001">
<input type="text" id="prop-duration-2-label" class="propValue" value="60">
</div>
</td>
</tr>
<tr>
<td><span class="propName">Min Radius</span></td><td>
</td><td>
<div id="prop-minRadius-3">
<input type="range" id="prop-minRadius-3-control" class="propControl slider" value="0.01" min="0" max="0.25" step="0.001">
<input type="text" id="prop-minRadius-3-label" class="propValue" value="0.01">
</div>
</td>
</tr>
<tr>
<td><span class="propName">Max Radius</span></td><td>
</td><td>
<div id="prop-maxRadius-4">
<input type="range" id="prop-maxRadius-4-control" class="propControl slider" value="0.1" min="0" max="0.25" step="0.001">
<input type="text" id="prop-maxRadius-4-label" class="propValue" value="0.1">
</div>
</td>
</tr>
<tr>
<td><span class="propName">Min Distance</span></td><td>
</td><td>
<div id="prop-minDistance-5">
<input type="range" id="prop-minDistance-5-control" class="propControl slider" value="0.01" min="0" max="2" step="0.001">
<input type="text" id="prop-minDistance-5-label" class="propValue" value="0.01">
</div>
</td>
</tr>
<tr>
<td><span class="propName">Max Distance</span></td><td>
</td><td>
<div id="prop-maxDistance-6">
<input type="range" id="prop-maxDistance-6-control" class="propControl slider" value="0.9" min="0" max="2" step="0.001">
<input type="text" id="prop-maxDistance-6-label" class="propValue" value="0.9">
</div>
</td>
</tr>
<tr>
<td><span class="propName">Zoom</span></td><td>
</td><td>
<div id="prop-zoom-7">
<input type="range" id="prop-zoom-7-control" class="numberSlider slider" value="1" min="0.5" max="5" step="0.001">
<input type="text" id="prop-zoom-7-label" class="propValue" value="1">
</div>
</td>
</tr>
<tr>
<td><span class="propName">Line Width</span></td><td>
</td><td>
<div id="prop-lineWidth-8">
<input type="range" class="colorSlider slider">
<input type="text" class="colorLabel">
<input type="range" class="colorSlider slider">
<input type="text" class="colorLabel">
<input type="range" class="colorSlider slider">
<input type="text" class="colorLabel">
<div style="width: 10px; height: 10px; background-color: red">
</div>
</td>
</tr>
<tr>
<td><span class="propName">Draw Dots</span></td><td>
</td><td><input type="checkbox" id="prop-drawDots-9" checked=""></td>
</tr>
<tr>
<td><span class="propName">Draw Lines</span></td><td>
</td><td><input type="checkbox" id="prop-drawLines-10" checked=""></td>
</tr>
<tr>
<td><span class="propName">Lines Over Dots</span></td><td>
</td><td><input type="checkbox" id="prop-linesOverDots-11"></td>
</tr>
<tr>
<td><span class="propName">Reverse Draw</span></td><td>
</td><td><input type="checkbox" id="prop-reverseDraw-12"></td>
</tr>
</tbody></table>
</div>
</div>
</div>
</div>
</body>
</html>