index.html 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <link rel="icon" href="/favicon.ico" />
  6. <meta name="viewport"
  7. content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, viewport-fit=cover">
  8. <meta http-equiv="Cache-control" content="no-cache">
  9. <meta http-equiv="Cache" content="no-cache">
  10. <meta http-equiv="Content-Security-Policy" content="
  11. default-src * data: blob: ws: wss: gap://ready file://* customscheme://*;
  12. style-src * 'unsafe-inline';
  13. script-src * 'unsafe-inline' 'unsafe-eval';">
  14. <meta name="apple-mobile-web-app-capable" content="yes" />
  15. <!-- 设置苹果工具栏颜色 -->
  16. <meta name="apple-mobile-web-app-status-bar-style" content="black" />
  17. <!-- 忽略页面中的数字识别为电话,忽略email识别 -->
  18. <meta name="format-detection" content="telphone=no, email=no" />
  19. <!-- 启用360浏览器的极速模式(webkit) -->
  20. <meta name="renderer" content="webkit" />
  21. <!-- 避免IE使用兼容模式 -->
  22. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  23. <meta name="HandheldFriendly" content="true" />
  24. <!-- uc强制竖屏 -->
  25. <meta name="screen-orientation" content="portrait" />
  26. <!-- QQ强制竖屏 -->
  27. <meta name="x5-orientation" content="portrait" />
  28. <!-- UC强制全屏 -->
  29. <meta name="full-screen" content="yes" />
  30. <!-- QQ强制全屏 -->
  31. <meta name="x5-fullscreen" content="true" />
  32. <!-- UC应用模式 -->
  33. <meta name="browsermode" content="application" />
  34. <!-- QQ应用模式 -->
  35. <meta name="x5-page-mode" content="app" />
  36. <!-- 设置在apple上以应用模式启动时,是否全屏 -->
  37. <meta name="apple-touch-fullscreen" content="yes" />
  38. <!-- windows phone 点击无高光 -->
  39. <meta name="msapplication-tap-highlight" content="no" />
  40. <meta name="referrer" content="no-referrer" />
  41. <title>管乐迷</title>
  42. <script src="/flexible.js" charset="UTF-8"></script>
  43. </head>
  44. <body>
  45. <div id="app"></div>
  46. <script type="module" src="/src/main.ts"></script>
  47. </body>
  48. </html>