AnimationTool/dist/index.html

38 lines
1.1 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">
<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
<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">
Origin X: <input type="text" name="originX" value="0" size="2">
2019-09-27 00:45:28 +00:00
Y: <input type="text" name="originY" value="0" size="2"><br>
Fps: <input type="text" name="framerate" value="60"><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>