1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <title>宝智达 • 3D数字孪生平台</title>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
- <link rel="shortcut icon" href="./favicon.ico">
- <style>
- body {
- font-family: sans-serif;
- font-size: 11px;
- background-color: #000;
- margin: 0px;
- }
- canvas {
- display: block;
- }
- </style>
- <script src="./static/js/jquery.min.js"></script>
- </head>
- <body>
- <div id="iot3d" style="height: 80%; width: 80%;"></div>
- <!-- Import maps polyfill -->
- <!-- Remove this when import maps will be widely supported "three": "./build/three.module.js", -->
- <script async src="./static/build/es-module-shims.js"></script>
- <script type="importmap">
- {
- "imports": {
- "three": "./static/build/three.module.js",
- "three/addons/": "./static/js/jsm/",
- "three/libs/": "./static/js/libs/"
- }
- }
- </script>
- <script type="module" src="./static/build/IOT3D.js"></script>
- <link rel="stylesheet" href="./static/js/libs/loading/load.css" media="all">
- <script async src="./static/js/libs/loading/load.js" charset="utf-8"></script>
- <!--<script src="./static/editor/lib/lib.js"></script> <!– 物联智控核心 –>-->
- </body>
- </html>
|