-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (29 loc) · 782 Bytes
/
index.html
File metadata and controls
31 lines (29 loc) · 782 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
h5{
margin-bottom: 4px;
}
</style>
</head>
<body>
<video id="preview" autoplay style="width: 50%"></video>
<div id="btnFacingModeContainer">
<h5>change by facingMode<br>(Chrome does not yet support.)</h5>
<button id="btnUser">user(front)</button>
<button id="btnEnvironment">environment(back)</button>
<button id="btnLeft">left</button>
<button id="btnRight">right</button>
<button id="btnFront">front</button>
<button id="btnBack">back</button>
</div>
<div id="btnDeviceIdContainer">
<h5>change by deviceId</h5>
</div>
<pre id="res"></pre>
<script src="demo.js"></script>
</body>
</html>