1234567891011121314151617181920212223242526272829 |
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>3D Tiles Loader: Webpack installation example</title>
- <style>
- #stats-widget {
- position: absolute;
- top: 70px;
- left: 10px;
- background-color: rgb(255 255 255 / 83%);
- padding: 10px;
- width: 300px;
- word-break: break-all;
- visibility: hidden;
- }
- #canvas-parent {
- width: 100vw;
- height: 100vh;
- touch-action: none;
- }
- </style>
- </head>
- <body>
- <div id="canvas-parent"></div>
- <div id="stats-widget"></div>
- <script src="bundle.js"></script>
- </body>
- </html>
|