-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy patheaselTest.html
executable file
·47 lines (39 loc) · 1.18 KB
/
easelTest.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 lang="en">
<head>
<meta charset="utf-8" />
<meta name="author" content="Mike Chambers" />
<meta name="keywords" content="" />
<meta name="description" content="" />
<meta name="copyright" content="Mike Chambers" />
<meta name="robots" content="index,follow" />
<title>TITLE</title>
<style>
#stageCanvas
{
background-color:#333333;
}
</style>
<script src="lib/easeljs.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/dojo/1.5/dojo/dojo.xd.js" type="text/javascript"></script>
<script type='text/javascript'>
var djConfig = {
isDebug: false,
parseOnLoad: true,
baseUrl: './',
};
</script>
<!--<script src="/libs/uow.js"></script>
-->
<!-- import the Easel library. Downloaded from:
http://easeljs.com/
-->
<script src="sonicZoom.js"></script>
<script src="easelTest.js"></script>
</head>
<body onload="">
<div width="400" height="300" id="content">
<canvas width="400" height="300" id="world"></canvas>
</div>
</body>
</html>