-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (31 loc) · 961 Bytes
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1" name="viewport" />
<style type="text/css">
<!--
html {
height:100%;
overflow:hidden;
}
body {
margin:0;
padding:0;
}
body, #canvas {
background:#EFEFEF;
width:100%;
height:100%;
}
-->
</style>
<title>Stellar</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/paper.js/0.9.18/paper-full.min.js"></script>
<script src="js/stellar.js" type="text/javascript"></script>
</head>
<body>
<canvas id="canvas" width="100%" height="100%"></canvas>
</body>
</html>