37 lines
1.1 KiB
HTML
37 lines
1.1 KiB
HTML
<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>
|
|
<div id="dropZone">
|
|
<div id = "topbar">
|
|
<div id="instructions" class="instruction">
|
|
<p>Drag images onto the page to upload them. Advance frames with arrow keys</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="frameNumber" class="warning">
|
|
<p></p>
|
|
</div>
|
|
<!-- canvas -->
|
|
<div id="canvasStyle">
|
|
<canvas id="canvasImage" alt=""></canvas>
|
|
</div>
|
|
<div id="settings">
|
|
Name: <input type = "text" id="filename"><br>
|
|
<div id = "originInfo">Click image to set Origin</div>
|
|
Fps: <input type="number" id="framerate" class="numberinput"><br>
|
|
<input type="checkbox" id="looping" > Looping <br>
|
|
<button id="saveButton" type="button">export .anim with (S)</button>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script src="bundle.js"></script>
|
|
</body>
|
|
</html>
|