-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcamera.html
More file actions
72 lines (71 loc) · 2.46 KB
/
camera.html
File metadata and controls
72 lines (71 loc) · 2.46 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
66
67
68
69
70
71
72
<html lang="en">
<head>
<meta content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes" name="viewport">
<meta content="#fff" id="theme-color" name="theme-color">
<base target="_blank">
<title>
QuiSwitch
</title>
<link href="styles/camera.css" rel="stylesheet">
</link>
</base>
</meta>
</meta>
</head>
<body>
<div id=container>
<p id="titleoptions">
OPTIONS
</p>
<p>
<text class="titles">Toggle Capture:</text>
<label class="switch">
<input type="checkbox" checked="true" id="toggle" value="true"></input>
<span class="slider round"></span>
</label>
</p>
<p>
<span class="input">
Safe Link URL:
<input type= "url" id="link" value="http://www.google.com"></input>
<span></span>
</span>
</p>
<p>
<span class="input">
Delay to close:
<input type="number" id="time" value="10"></input>
<span></span>
</span>
</p>
<p>
<span class="input">
Number to abide:
<input type="number" id="users" value="1"></input>
<span></span>
</span>
</p>
<p>
<text class="titles">Exact Abidation:</text>
<label class="switch">
<input type="checkbox" id="exact" value="true"></input>
<span class="slider round"></span>
</label>
</p>
<p>
<span class="input">
Closeness Sensitivity:
<input type="number" id="sens" value="80"></input>
<span></span>
</span>
</p>
</div>
<div id="main-container">
<video width="0" height="0" id = "gum" autoplay></video>
<canvas width="640" height="480" id = "canvas"></canvas>
</div>
<script src ="jquery.js"></script>
<script src="camera.js">
</script>
</body>
</html>