-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (48 loc) · 1.45 KB
/
index.html
File metadata and controls
55 lines (48 loc) · 1.45 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
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Simple online 2D animation program">
<meta name="author" content="Dagan Martinez">
<meta name="referrer" content="same-origin">
<meta name="keywords" content="animate, paint, draw, online, animation">
<title>Animator</title>
<link rel="stylesheet" href="style.css">
<script src="app.js" type="module"></script>
</head>
<body>
<div id="sheet-view">
<!-- not-a-sheet is to hold the sheet stack together-->
<canvas id="not-a-sheet" width="800" height="600"></canvas>
</div>
<div id="keyframe-set-view">
</div>
<div id="timeline">
<div id="timeline-bottombar">
<button id="actionbutton-new-layer">+</button>
</div>
</div>
<div id="templates" hidden>
<canvas id="sheet-template" class="sheet" width="800" height="600"></canvas>
<div id="keyframe-template" class="keyframe">
<div>°</div>
<div class="keyframe-right-side keyframe-side">
</div>
<div class="keyframe-left-side keyframe-side">
</div>
</div>
<div id="keyframe-set-template" class="keyframe-set" hidden>
<div class="keyframe-set-label">
Layer 1
</div>
<div class="keyframe-set-actions">
<button class="keyframe-set-action-hide">0</button>
<button class="keyframe-set-action-new">+</button>
</div>
<div class="keyframes">
</div>
</div>
</div>
</body>
</html>