drag-and-drop.html 563 B

123456789101112131415161718192021
  1. <html>
  2. <script src="../dist/iife/spine-webgl.js"></script>
  3. <style>
  4. * {
  5. margin: 0;
  6. padding: 0;
  7. }
  8. </style>
  9. <body>
  10. <canvas id="canvas" style="position: absolute; width: 100%; height: 100%;"></canvas>
  11. <div style="position: absolute; top: 1em; left: 1em; z-index: 1; color: #ccc;">
  12. <label style="margin-right: 0.5em;">Animations</label>
  13. <select id="animations"></select>
  14. <label>PMA</label>
  15. <input type="checkbox" id="pma" checked>
  16. </div>
  17. <script src="drag-and-drop.js"></script>
  18. </body>
  19. </html>