1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <script src="./js/4dage.js"></script>
- <title>Document</title>
- <style>
- html {
- overflow: hidden;
- }
- .bacBox {
- opacity: 1;
- pointer-events: auto;
- position: absolute;
- z-index: 998;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- transition: all 1s;
- }
- </style>
- </head>
- <body>
- <div id="ui"></div>
- <div class="bacBox"></div>
- <script>
- let loaded = false;
- const number = getQueryVariable("m");
- window.autoRotate = true; // 是否自动旋转
- function initModel(isDev) {
- if (loaded) return;
- fdage.embed(isDev ? "https://sit-shgybwg.4dage.com" + number : number, {
- transparentBackground: true,
- width: 800,
- height: 600,
- autoStart: true,
- fullFrame: true,
- pagePreset: false,
- });
- loaded = true;
- }
- window.parent.postMessage("modelPageLoaded", location.origin);
- </script>
- </body>
- </html>
|