-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathmain.html
More file actions
65 lines (65 loc) · 1.47 KB
/
main.html
File metadata and controls
65 lines (65 loc) · 1.47 KB
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
<html>
<head>
<title></title>
<style>
body {
background :black;
}
canvas {
float : left;
border : 2px solid blue;
}
dl {
margin-left : 820px;
color : white;
}
dl input {
width : 300px;
}
</style>
</head>
<body>
<canvas width="800" height="600" id="screen"></canvas>
<dl>
<dt>fps</dt>
<dd><span id="fps"></span></dd>
<dt>F</dt>
<dd>
<input id="F" type="range" min="0.0" max="4.0" value="1.0" step="0.01"/>
<span id="F_label"></span>
</dd>
<dt>a</dt>
<dd>
<input id="a" type="range" min="0.0" max="4.0" value="1.0" step="0.001"/>
<span id="a_label"></span>
</dd>
<dt>b</dt>
<dd>
<input id="b" type="range" min="0.0" max="4.0" value="1.0" step="0.001"/>
<span id="b_label"></span>
</dd>
<dt>scale</dt>
<dd>
<input id="scale" type="range" min="0.0" max="20.0" value="1.0" step="0.001"/>
<span id="scale_label"></span>
</dd>
<!--
<dt>fov x</dt>
<dd><input id="fovx" type="range" min="0.0" max="2.0" value="1.0" step="0.001"/></dd>
<dt>fov y</dt>
<dd><input id="fovy" type="range" min="0.0" max="2.0" value="1.0" step="0.001"/></dd>
-->
<dt>image</dt>
<dd>
<select id="image">
<option value="0">1</option>
<option value="1">2</option>
<option value="2">3</option>
<option value="3">4</option>
</select>
</dd>
</dl>
<script src="javascripts/lib.js"></script>
<script src="javascripts/main.js"></script>
</body>
</html>