-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (53 loc) · 1.18 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<head><title>EMOJIcam</title>
<style>
body{
background-color: #000000 !important;
color:#ffffff !important;
}
* { font: 15px monospace; }
body { width: 100%; }
video, canvas { display: none; }
#outer {
margin: 0 auto;
width: 100%;
text-align: center;
}
#ascii, #fps {
display: inline-block;
margin: 0 auto;
padding: 0;
font-size: 0.6rem;
}
#title {
text-align: center;
}
</style>
<meta charset="utf-8">
<script id="title" type="ascii-art">
LOADING
</script>
<script id="title" type="ascii-art">
Brite ± _ Tint ○ _ Horiz ○ _ Freeze ○
</script>
<script id="intro" type="ascii-art">
...FFFFthhhhhh...SKZZZTssTKHHHKHHhhh...hhhSHHHHHHHhhhhFFFFfff...
Attempting to establish video downlink...
Click the 'Allow' button up above.
</script>
<script id="nocamera" type="ascii-art">
Unable to connect to camera
</script>
<script id="nosupport" type="ascii-"art">
Your browser is unsupported
</script>
</head>
<body>
<div id="outer">
<pre style="color:#fff" id="ascii"></pre><br>
<div style="color:#fff" id="fps"></div>
</div>
<canvas width=80 height=40></canvas>
<video autoplay></video>
<script type="text/javascript" src="app.js"></script>
</body>