-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchannels.html
39 lines (32 loc) · 918 Bytes
/
channels.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Chromatic Cabinet</title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<div id="return"><a href="/">↵</a></div>
<div id="pause">♦</div>
<div id="ascii-wrapper">
<pre class='ascii' id='r-corrected'></pre>
<pre class='ascii' id='g-corrected'></pre>
<pre class='ascii' id='b-corrected'></pre>
<pre class='ascii' id='r'></pre>
<pre class='ascii' id='g'></pre>
<pre class='ascii' id='b'></pre>
</div>
<div id="info">
<h2>not supported</h2>
</div>
<script src="js/deps.min.js"></script>
<script src="js/ascii.js"></script>
<script src="js/camera.js"></script>
<script src="js/ascii-channels.js"></script>
<script>
$(function(){
channels.init();
});
</script>
</body>
</html>