-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (57 loc) · 1.46 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
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Perspective</title>
<link rel="stylesheet" href="fullscreen.css">
<script type="module" src="index.js"></script>
</head>
<body>
<form id="settings">
<div>
<label for="pd">
vision angle
<input type="number" id="pd" name="pd" step="10" min="10">
</label>
</div>
<div>
<label for="frame-count">
frames count
<input type="number" id="frame-count" name="frame-count" step="10" min="10">
</label>
</div>
<div>
<label for="distance-x">
length
<input type="number" id="distance-x" name="distance-x" step="1" min="1">
</label>
</div>
<div>
<label for="distance-y">
width
<input type="number" id="distance-y" name="distance-y" step="1" min="0">
</label>
</div>
<div>
<label for="scale">
scale
<input type="number" id="scale" name="scale" step="1" min="1">
</label>
</div>
<div>
<label for="horizon-x">
horizon x
<input type="number" id="horizon-x" name="horizon-x" step="10">
</label>
</div>
<div>
<label for="horizon-y">
horizon y
<input type="number" id="horizon-y" name="horizon-y" step="10">
</label>
</div>
*canvas clickable
<!-- and scrollable-->
</form>
</body>
</html>