diff options
Diffstat (limited to 'src/dist/index.html')
-rw-r--r-- | src/dist/index.html | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/src/dist/index.html b/src/dist/index.html new file mode 100644 index 0000000..f6a0294 --- /dev/null +++ b/src/dist/index.html @@ -0,0 +1,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 --> |