-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
34 lines (31 loc) · 904 Bytes
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>ASCII Camera</title>
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<div class="body">
<div class="buttons">
<a href="#" class="button green" id="startbtn">Start Camera</a>
<a href="#" class="button red" id="stopbtn" style="display:none;">Stop Camera</a>
</div>
<div class="select">
<label for="audioSource">Audio source: </label><select id="audioSource"></select>
</div>
<div class="select">
<label for="videoSource">Video source: </label><select id="videoSource"></select>
</div>
<div id="asciiContainer">
<!-- The ascii art comes in the pre tag below -->
<pre id="asciiText"></pre>
</div>
</div>
<div style="display:none;">
<video id="cam" autoplay></video>
</div>
<script src="js/asciicam.js"></script>
<script src="js/cam.js"></script>
</body>
</html>