index.html 663 B

1234567891011121314151617181920212223242526272829
  1. <html lang="en">
  2. <head>
  3. <meta charset="UTF-8">
  4. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  5. <title>3D Tiles Loader: Webpack installation example</title>
  6. <style>
  7. #stats-widget {
  8. position: absolute;
  9. top: 70px;
  10. left: 10px;
  11. background-color: rgb(255 255 255 / 83%);
  12. padding: 10px;
  13. width: 300px;
  14. word-break: break-all;
  15. visibility: hidden;
  16. }
  17. #canvas-parent {
  18. width: 100vw;
  19. height: 100vh;
  20. touch-action: none;
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <div id="canvas-parent"></div>
  26. <div id="stats-widget"></div>
  27. <script src="bundle.js"></script>
  28. </body>
  29. </html>