-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
38 lines (38 loc) · 1.26 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" href="CSS/styles.css">
<title>Visibility</title>
</head>
<body>
<div id="appContainer">
<canvas id="app"></canvas>
</div>
<div id="appControls" class="closed">
<div id="polygonControls" class="appControl">
<h3>Poligon</h3>
<div class="appInfo">
</div>
<div class="appInput">
<input type="number" name="xPolygonPoint" id="xPolygonPoint" value="0" min="0" max="100" step="5" novalidate>
<input type="number" name="yPolygonPoint" id="yPolygonPoint" value="0" min="0" max="100" step="5" novalidate>
<input type="button" name="addPolygonPoint" id="addPolygonPoint" value="+">
</div>
</div>
<div id="pointsControls" class="appControl">
<h3>Camera</h3>
<div class="appInput">
<input type="number" name="xPoint" id="xPoint" value="50" step="5" min="0" max="100" novalidate>
<input type="number" name="yPoint" id="yPoint" value="50" step="5" min="0" max="100" novalidate>
<input type="button" name="addPoint" id="addPoint" value="↺">
</div>
</div>
<div id="result">
<input type="button" value="Calculeaza">
</div>
</div>
<script src="JS/script.js"></script>
</body>
</html>