2019-09-25 00:11:26 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>AnimationTool</title>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
|
|
|
<link rel="icon" href="/favicon.ico">
|
|
|
|
<link rel="stylesheet" href="assets/stylesheets/main.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
2019-09-25 03:16:07 +00:00
|
|
|
<div id="dropZone">
|
2019-09-26 23:28:35 +00:00
|
|
|
<div id = "topbar">
|
|
|
|
<div id="instructions" class="instruction">
|
|
|
|
<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-25 03:16:07 +00:00
|
|
|
|
2019-09-26 22:11:13 +00:00
|
|
|
<div id="frameNumber" class="warning">
|
2019-09-26 01:59:16 +00:00
|
|
|
<p></p>
|
|
|
|
</div>
|
|
|
|
<!-- 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>
|
|
|
|
<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>
|