AnimationTool/dist/index.html

39 lines
1.3 KiB
HTML
Raw Normal View History

2019-09-25 00:11:26 +00:00
<html>
<head>
<title>AnimationTool</title>
<meta charset="utf-8">
<link rel="icon" href="/favicon.ico">
</head>
<body>
2019-09-25 03:16:07 +00:00
<div id="dropZone">
2019-09-26 23:28:35 +00:00
<div id = "topbar">
2019-10-03 23:33:32 +00:00
<div class="instruction">
2019-09-26 23:28:35 +00:00
<p>Drag images onto the page to upload them. Advance frames with arrow keys</p>
</div>
2019-09-26 22:36:27 +00:00
</div>
2019-09-26 01:59:16 +00:00
<!-- canvas -->
2019-09-28 01:35:27 +00:00
<div id="canvasStyle">
<canvas id="canvasImage" alt=""></canvas>
2019-09-26 23:28:35 +00:00
</div>
2019-10-04 23:38:11 +00:00
<div id="frameNumber" class="warningMessage"></div>
2019-10-04 01:02:08 +00:00
<div id="frameViewer"></div>
2019-09-28 17:59:50 +00:00
<button id="addpin">Create New Pin</button>
<div id="pinContainer" class="pinContainer">
<div class="pinButtonContainerSelected" id="originPin"><p>Origin</p><button id="selectOrigin">Select</button>
</div>
</div>
2019-09-26 23:28:35 +00:00
<div id="settings">
2019-09-28 00:04:01 +00:00
Name: <input type = "text" id="filename"><br>
2019-09-27 23:45:52 +00:00
<div id = "originInfo">Click image to set Origin</div>
2019-09-27 02:02:46 +00:00
Fps: <input type="number" id="framerate" class="numberinput"><br>
<input type="checkbox" id="looping" > Looping <br>
2019-09-27 00:45:28 +00:00
<button id="saveButton" type="button">export .anim with (S)</button>
2019-09-26 01:59:16 +00:00
</div>
2019-09-26 22:15:20 +00:00
2019-09-25 00:42:35 +00:00
</div>
<script src="bundle.js"></script>
2019-09-25 00:11:26 +00:00
</body>
</html>