-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·34 lines (30 loc) · 1.05 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>singy-bird</title>
<!--
<script src="libraries/p5.js" type="text/javascript"></script>
<script src="libraries/p5.dom.js" type="text/javascript"></script>
<script src="libraries/p5.sound.js" type="text/javascript"></script>
-->
<style>
body {padding: 0; margin: 0;}
canvas {
vertical-align: top;
/* height: 100px;
width: 400px;*/
border: 1px solid blue;
}
</style>
</head>
<body>
<div id="scene"></div>
<canvas id="stream"></canvas>
<script src="node_modules/two.js/build/two.js" type="text/javascript"></script>
<!-- <script src="node_modules/web-audio-daw/build/wad.js" type="text/javascript"></script> -->
<script src="bird.js" type="text/javascript"></script>
<script src="sketch.js" type="text/javascript"></script>
<script src="sound.js" type="text/javascript"></script>
</body>
</html>