42 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.4 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>
 | 
						|
          <button id="addpin">Create New Pin</button>
 | 
						|
          <div id="pinContainer" class="pinContainer">
 | 
						|
            <div class="pinButtonContainerSelected" id="originPin"><p>Origin</p><button id="selectOrigin">Select</button>
 | 
						|
            </div>
 | 
						|
          </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>
 |