-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (32 loc) · 856 Bytes
/
Copy pathindex.html
File metadata and controls
37 lines (32 loc) · 856 Bytes
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
<!DOCTYPE html>
<html lang="english">
<head>
<meta charset="UTF-8" />
<title>I Am The Controller</title>
<style>
body {
background: black;
margin: 0px;
padding: 0px
}
video {
display: none;
image-rendering: -webkit-pixelated;
}
canvas {
transform-origin: "0 0";
image-rendering: -webkit-pixelated;
image-rendering: -moz-pixelated;
}
</style>
</head>
<body>
<canvas id="small_canvas" width="128" height="72"></canvas>
<video autoplay></video>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tone/14.7.68/Tone.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.20/lodash.min.js"
integrity="sha512-90vH1Z83AJY9DmlWa8WkjkV79yfS2n2Oxhsi2dZbIv0nC4E6m5AbH8Nh156kkM7JePmqD6tcZsfad1ueoaovww=="
crossorigin="anonymous"></script>
<script src="script.js"></script>
</body>
</html>