12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <!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="./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%;
- background-color: #cfcfd0;
- transition: all 1s;
- }
- </style>
- </head>
- <body>
- <div id="ui"></div>
- <div class="bacBox"></div>
- <script>
- let number = getQueryVariable("m");
- let num = getQueryVariable("n");
- // console.log('ppppppppp',number);
- window.autoRotate = true; // 是否自动旋转
- // 打包配置
- let src = ''
- if (window.location.href.includes('localhost:')) {
- // 本地环境
- src = 'http://192.168.20.55:8080/'
- } else {
- // 正式环境
- src = './staticData/'
- }
- // fdage.embed( number, {
- fdage.embed(`${src}3Goods/${number}/main${num}.4dage`, {
- transparentBackground: true,
- width: 800,
- height: 600,
- autoStart: true,
- fullFrame: true,
- pagePreset: false
- });
- </script>
- </body>
- </html>
|