-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathauthoring.html
More file actions
49 lines (42 loc) · 1.35 KB
/
authoring.html
File metadata and controls
49 lines (42 loc) · 1.35 KB
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
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>OnionSkin</title>
<link rel="stylesheet" href="http://mtcanvas.com/css/reset.css">
<link rel="stylesheet" href="css/style.css">
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script src="js/onion-skin-authoring.js"></script>
<script src="js/renderer.js"></script>
<script src="js/canvas.js"></script>
<script src="js/timeline.js"></script>
<script>
$(function(){
os.OnionSkinAuthoring();
});
</script>
</head>
<body>
<div id="ui">
<span class="title">OnionSkin</span>
<button id="new-file">new animation</button><br/>
frame : <span id="frame-num">1</span>
<div id="timeline">
<div class="frame" data-num="0"></div>
</div>
<button id="play">►</button>
<div id="stop-container"><button id="stop">stop</button></div>
<button id="add">add</button>
<button id="duplicate">duplicate</button>
<button id="delete">delete</button>
-
<input id="file-name" type="text" placeholder="file name" />
<button id="save">save</button>
-
open : <select id="files"></select>
-
<button id="download">download</button>
</div>
<div id="container"></div>
</body>
</html>