-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (37 loc) · 1.22 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
35
36
37
38
39
40
41
42
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>Sipubot</title>
<meta name="viewport" content="width=device-width">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<canvas id="snail" class="contextCanvas" width="40" height="40" style="position: absolute;
left: 0px;
top: 0px;
z-index: 1000;"></canvas>
<canvas id="snailComment" class="contextCanvas" width="80" height="20" style="position: absolute;
left: 0px;
top: 0px;
z-index: 1000;"></canvas>
<canvas id="carrot0" class="contextCanvas" width="20" height="20" style="position: absolute;
left: 0px;
top: -100px;
z-index: 1;"></canvas>
<canvas id="carrot1" class="contextCanvas" width="20" height="20" style="position: absolute;
left: 0px;
top: -100px;
z-index: 1;"></canvas>
<canvas id="carrot2" class="contextCanvas" width="20" height="20" style="position: absolute;
left: 0px;
top: -100px;
z-index: 1;"></canvas>
<div>Test View</div>
<script src="javascripts/bezier.js"></script>
<script src="javascripts/snail.js"></script>
</body>
</html>