forked from philogb/jit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest11.html
143 lines (133 loc) · 3.1 KB
/
test11.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
$def with (model)
<h4>Global Options</h4>
<table>
<tr>
<td>
duration:
</td>
<td>
<select id="select-duration">
<option>1000</option>
<option>1500</option>
</select>
</td>
</tr>
<tr>
<td>
fps:
</td>
<td>
<select id="select-fps">
<option>10</option>
<option selected="selected">30</option>
<option>60</option>
</select>
</td>
</tr>
<tr>
<td>
hide labels:
</td>
<td>
<input type="checkbox" checked="checked" id="hide-labels" />
</td>
</tr>
<tr>
<td>
<input type="button" value="Refresh" onclick="window.location = window.location" />
</td>
</tr>
</table>
<h4>1.- Remove Nodes</h4>
<table>
<tr>
<td>
type:
</td>
<td>
<select id="select-type-remove-nodes">
<option>fade:seq</option>
<option>fade:con</option>
<option>iter</option>
<option>replot</option>
</select>
</td>
</tr>
<tr>
<td>
<input type="button" value="Remove" id="remove-nodes" />
</td>
<td>
<input type="button" value="Refresh" onclick="window.location = window.location" />
</td>
</tr>
</table>
<h4>2.- Remove Edges</h4>
<table>
<tr>
<td>
type:
</td>
<td>
<select id="select-type-remove-edges">
<option>fade:seq</option>
<option>fade:con</option>
<option>iter</option>
<option>replot</option>
</select>
</td>
</tr>
<tr>
<td>
<input type="button" value="Remove" id="remove-edges" />
</td>
<td>
<input type="button" value="Refresh" onclick="window.location = window.location" />
</td>
</tr>
</table>
<h4>3.- Add Graph (Sum)</h4>
<table>
<tr>
<td>
type:
</td>
<td>
<select id="select-type-sum">
<option>fade:seq</option>
<option>fade:con</option>
<option>replot</option>
</select>
</td>
</tr>
<tr>
<td>
<input type="button" value="Sum" id="sum" />
</td>
<td>
<input type="button" value="Refresh" onclick="window.location = window.location" />
</td>
</tr>
</table>
<h4>4.- Morph</h4>
<table>
<tr>
<td>
type:
</td>
<td>
<select id="select-type-morph">
<option>fade:con</option>
<option>replot</option>
</select>
</td>
</tr>
<tr>
<td>
<input type="button" value="Morph" id="morph" />
</td>
<td>
<input type="button" value="Refresh" onclick="window.location = window.location" />
</td>
</tr>
</table>