38 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.2 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="currentImage">
 | 
						|
            <img alt="No images uploaded">
 | 
						|
          </div>
 | 
						|
 | 
						|
          <div id="settings">
 | 
						|
              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>
 | 
						|
              <input type="checkbox" name="looping" > Looping <br>
 | 
						|
              <button id="saveButton" type="button">export .anim with (S)</button>
 | 
						|
          </div>
 | 
						|
          
 | 
						|
        </div>
 | 
						|
 | 
						|
        <script src="bundle.js"></script>
 | 
						|
	</body>
 | 
						|
</html>
 |