forked from SouICry/fetch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest2.html
More file actions
23 lines (17 loc) · 889 Bytes
/
test2.html
File metadata and controls
23 lines (17 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<select class="hidden" style="display: none" id="videoSource"></select>
<script src="js/camera.js"></script>
<video id="video1" width="800" height="600" muted autoplay></video>
<canvas id="canvas1" width="800" height="600"></canvas>
<button id="takeButton1">Take photo</button>
<button id="redoButton1">Retake Photo</button>
<input type="file" id="uploadImage1" name="imageLoader"/>
<button id="uploadButton1">Upload to server</button>
<script>
enableCameraImage(document.getElementById("video1"),
document.getElementById("canvas1"),
document.getElementById("takeButton1"),
document.getElementById("redoButton1"),
document.getElementById('uploadImage1'),
0); //0 front cam, 1 back cam if available
</script>