index.html 867 B

123456789101112131415161718192021222324252627282930313233343536
  1. <!doctype html>
  2. <html lang="">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <link rel="icon" href="/favicon.ico" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <title>博物中国</title>
  8. <style>
  9. html,
  10. body {
  11. height: 100%;
  12. margin: 0;
  13. }
  14. .app-frame-shell {
  15. box-sizing: border-box;
  16. /* 大写 PX:避免 postcss-px-to-viewport 把壳层宽度换算成 vw */
  17. max-width: 640PX;
  18. height: 100%;
  19. min-height: 100%;
  20. margin: 0 auto;
  21. }
  22. .app-frame-shell iframe {
  23. display: block;
  24. border: 0;
  25. width: 100%;
  26. height: 100%;
  27. vertical-align: top;
  28. }
  29. </style>
  30. </head>
  31. <body>
  32. <div class="app-frame-shell">
  33. <iframe src="./app.html" title="博物中国"></iframe>
  34. </div>
  35. </body>
  36. </html>