-
Notifications
You must be signed in to change notification settings - Fork 0
/
ui_input.html
38 lines (32 loc) · 1.17 KB
/
ui_input.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<div style="color:white; margin-bottom:10px;">
<label for="angle">Angle:</label>
<input type="textarea" id="angle" value=45 style="width:40px; margin-right:10px;">
<label for="n1">n1:</label>
<input type="textarea" id="n1" value=1 style="width:40px; margin-right:10px;">
<label for="n2">n2:</label>
<input type="textarea" id="n2" value="1.33"style="width:40px;">
</div>
<div style="color:white">
<div style="margin-bottom:10px;">
<input type="button" id="update" value="Update" style="margin-right:5px;">
<input type="button" id="start" value="Start/Stop" style="margin-left:5px;">
<label for="speed">Speed:</label>
<select type="textarea" id="speed" style="width:40px;">
<option value="0">0</option>
<option value="0.01" selected>1</option>
<option value="0.02">2</option>
<option value="0.03">3</option>
<option value="0.04">4</option>
<option value="0.05">5</option>
</select>
</div>
</div>
</body>
</html>