index.html 559 B

1234567891011121314151617181920212223
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <link href="style.css" rel="stylesheet" />
  5. <meta charset=utf-8 />
  6. <title>pixlife</title>
  7. </head>
  8. <body>
  9. <canvas id="canvas"></canvas>
  10. <input type="button" id="pause" value="pause">
  11. <div id="zone">
  12. <input type="file" id="browse" style="display: none">
  13. <div id="drop" onclick="document.getElementById('browse').click();">
  14. <p>Drag image here or click to browse...</p>
  15. </div>
  16. <output id="list"></output>
  17. <button id="parse">Import</button>
  18. </zone>
  19. </body>
  20. <script src="gl.js"></script>
  21. <script src="code.js"></script>
  22. </html>