forked from digital-flowers/createjs-free-transform-tool
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
31 lines (30 loc) · 1.2 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
<html>
<head>
<title>Create.js Free Transform Tool</title>
<meta name="viewport" content="width=device-width, user-scalable=no" />
<link rel="shortcut icon" href="data:image/x-icon;," type="image/x-icon">
<link rel="stylesheet" href="demo/spectre.min.css">
<style>
body {
background: -webkit-linear-gradient(to bottom, #fffcdc, #d9a7c7);
background: linear-gradient(to bottom, #fffcdc, #d9a7c7);
}
#Designer {
border: 2px solid #fff;
background-color: rgba(255, 255, 255, 0.5);
}
</style>
</head>
<body>
<div class="container">
<div id="CanvasContainer" class="column col-10 col-mx-auto mt-2 mb-2">
<h2>Create.js Free Transform Tool</h2>
<p>Select one of the display objects to show the controls for transforming it.</p>
<canvas id="Designer" width="500" height="400"></canvas>
</div>
</div>
<script src="demo/easeljs.js"></script>
<script src="createjs.util.FreeTransformTool.js"></script>
<script src="demo/demo.js"></script>
</body>
</html>