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 -->
|
|
|
|
<div id="currentImage">
|
2019-09-26 23:28:35 +00:00
|
|
|
<img alt="No images uploaded">
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="settings">
|
2019-09-27 01:07:41 +00:00
|
|
|
Origin X: <input type="number" name="originX" value="0" class="numberinput">
|
|
|
|
Y: <input type="number" name="originY" value="0" class="numberinput"><br>
|
|
|
|
Fps: <input type="number" id="framerate" value="60" class="numberinput"><br>
|
2019-09-26 23:28:35 +00:00
|
|
|
<input type="checkbox" name="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>
|