-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcamera.html
47 lines (46 loc) · 1.97 KB
/
camera.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
<!DOCTYPE html>
<html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<!--http://code.jquery.com/ui/1.11.2/themes/smoothness/jquery-ui.css-->
<link rel="stylesheet" href="jquery-ui.css">
</head>
<body>
<!--http://code.jquery.com/jquery-1.11.2.min.js"-->
<script src="jquery-1.11.2.min.js"></script>
<!--http://code.jquery.com/jquery-migrate-1.2.1.min.js-->
<script src="jquery-migrate-1.2.1.min.js"></script>
<!--http://code.jquery.com/ui/1.11.2/jquery-ui.js-->
<script src="jquery-ui.js"></script>
<script>var debug=false;</script>
<script src="camera.js"></script>
<div id="countdown"></div>
<div id="control-cam"></div>
<div id="camera" style="position: relative;">
<div id="canvas" style="position: absolute; left: 0px; top: 0px;">
<canvas id="x" width="640" height="480">
</canvas>
</div>
<div id="slider-group" style="display: none">
<div id="tilt-slider-group" style="position: absolute; left: 650px; top: 0px;">
<p>
<label for="tilt-slider-amount">Tilt</label>
</p>
<div id="tilt-slider" style="height:410px;"></div>
</div>
<div id="zoom-slider-group" style="position: absolute; left: 700px; top: 0px;">
<p>
<label for="zoom-slider-amount">Zoom</label>
</p>
<div id="zoom-slider" style="height:410px;"></div>
</div>
<div id="pan-slider-group" style="position: absolute; left: 0px; top: 480px;">
<p>
<label for="pan-slider-amount">Pan</label>
</p>
<div id="pan-slider" style="width: 640px"></div>
</div>
</div>
</div>
</body>
</html>