| 12345678910111213141516171819202122232425 |
- <!doctype html>
- <html lang="zh-CN">
- <head>
- <meta charset="UTF-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <meta name="color-scheme" content="light" />
- <title>GLB 加载演示</title>
- <style>
- html,
- body,
- #root {
- height: 100%;
- background: transparent;
- }
- body {
- margin: 0;
- overscroll-behavior: none;
- }
- </style>
- </head>
- <body>
- <div id="root"></div>
- <script type="module" src="/src/main.jsx"></script>
- </body>
- </html>
|