-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
41 lines (36 loc) · 1.3 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<script src="./lib/jquery-2.1.4.min.js"></script>
<script src="./lib/CSInterface.js"></script>
<link id="hostStyle" rel="stylesheet" type="text/css" href="css/theme.css">
<link id="theme" rel="stylesheet" type="text/css" href="css/light.css">
<title>Draw2Script</title>
</head>
<body onLoad="onLoaded()">
<div id="content">
<div>
<select class="topcoat-select" id="scriptType">
<option value="easeljs">EaselJS tiny API</option>
<option value="pixijs">PixiJS tiny API</option>
<option value="pixijson">PixiJS graphics API</option>
<option value="json">JSON</option>
</select>
<button class="topcoat-button" onClick="onClickButtonGenerate()">Generate</button>
</div><br>
<div>
<input type="text" class="topcoat-text-input" placeholder="Prefix" value="" id="prefix">
<button class="topcoat-button" onClick="onClickButtonSelect()">Select</button>
</div><br>
<div>
<textarea readonly id="output" class="topcoat-textarea" rows="10" cols="20"></textarea>
</div><br>
</div>
<script src="./js/themeManager.js"></script>
<script src="./js/eventHandler.js"></script>
<script src="./js/parser/createjs.js"></script>
<script src="./js/parser/pixitiny.js"></script>
<script src="./js/parser/pixigraphics.js"></script>
</body>
</html>