model.html 662 B

123456789101112131415161718192021222324252627282930
  1. <!DOCTYPE html>
  2. <html lang="zh">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <script src="./4dage.js"></script>
  8. <title>Document</title>
  9. <style>
  10. html {
  11. overflow: hidden;
  12. }
  13. </style>
  14. </head>
  15. <body>
  16. <div id="ui"></div>
  17. <script>
  18. let url = getQueryVariable('m')
  19. fdage.embed(url, {
  20. transparentBackground: true,
  21. width: 800,
  22. height: 600,
  23. autoStart: true,
  24. fullFrame: true,
  25. pagePreset: false
  26. })
  27. </script>
  28. </body>
  29. </html>