-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdisplay.html
More file actions
31 lines (29 loc) · 739 Bytes
/
display.html
File metadata and controls
31 lines (29 loc) · 739 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
<!--
HOST, WS SERVER, HTTP SERVER? (macbook)
^
| websocket
v
DISPLAY (tablet) (plays sound) (hosts wifi)
Host on whatever port (8000 is good)
Websocket on 8888
-->
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="manifest" href="soundshow.webmanifest">
<link rel="stylesheet" type="text/css" href="kube/dist/css/kube.css">
<script src="p5/p5.js"></script>
<script src="p5/addons/p5.sound.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
input {
outline: none;
}
</style>
</head>
<body>
<script src="display.js"></script>
</body>
</html>