index.html 593 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Workbench</title>
  6. <style>
  7. *{margin:0;padding:0;box-sizing:border-box;}
  8. #canvas{height:100vh;width:100vw;display:block;}
  9. </style>
  10. <script type="importmap">
  11. {
  12. "imports": {
  13. "three": "/three.js",
  14. "orbitControls": "/orbit-controls.js",
  15. "board": "/objects/board.js"
  16. }
  17. }
  18. </script>
  19. </head>
  20. <body>
  21. <canvas id="canvas"></canvas>
  22. <script type="module" src="/workbench.js"></script>
  23. </body>
  24. </html>