blob: f6a0294143aa73e1c9c124f6a210597c5a0c9b3b (
plain) (
blame)
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
|
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<title>Cheap web cam</title>
</head>
<body>
<noscript>
This page contains web assembly and Javascript content, please enable
Javascript in your browser.
</noscript>
<div class="content">
<div class="controls">
<button class="btn btn-play" title="Start video stream"></button>
<button class="btn btn-pause" title="Pause video stream"></button>
<button class="btn btn-shot active" title="Take photo"></button>
<button class="btn btn-log-del" title="Clear the log"></button>
<button class="btn btn-log-hide non-active" title="Show the log"></button>
<button
class="btn btn-confirm"
title="Confirm the image, and process it"></button>
<select name="" id="stream-input-select">
<option value="">Select camera</option>
</select>
</div>
<div class="output">
<img
id="photo"
class="overlay"
alt="The screen capture will appear in this box." />
<canvas id="canvas" class="overlay"> </canvas>
<video id="video" class="overlay">Video stream not available.</video>
</div>
</div>
<pre id="console" class="active" style="display: None;">Log entries:</pre>
<script src="main.js"></script>
</body>
</html>
<!-- vim: ts=2 -->
|