-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (32 loc) · 914 Bytes
/
index.html
File metadata and controls
34 lines (32 loc) · 914 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
body,
html {
height: 100%;
width: 100%;
background-color: black;
color: white;
margin: 0;
}
canvas {
height: 100%;
width: 100%;
}
</style>
<script
type="text/javascript"
src="https://cdnjs.cloudflare.com/ajax/libs/paper.js/0.12.11/paper-full.js"
></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/howler/2.2.0/howler.js"></script>
<!-- <script type="text/javascript" src="paper-full.js"></script> -->
</head>
<body>
<canvas id="myCanvas" resize></canvas>
<script type="text/paperscript" canvas="myCanvas" src="index.js"></script>
</body>
</html>