index.html 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta http-equiv="X-UA-Compatible" content="ie=edge,chrome=1" />
  6. <meta name="viewport" content="width=device-width,initial-scale=1.0" />
  7. <!-- 针对手持设备优化,主要是针对一些老的不识别viewport的浏览器,比如黑莓 -->
  8. <meta name="HandheldFriendly" content="true" />
  9. <!-- 微软的老式浏览器 -->
  10. <meta name="MobileOptimized" content="320" />
  11. <!-- uc强制竖屏 -->
  12. <meta name="screen-orientation" content="portrait" />
  13. <!-- QQ强制竖屏 -->
  14. <meta name="x5-orientation" content="portrait" />
  15. <!-- UC强制全屏 -->
  16. <meta name="full-screen" content="yes" />
  17. <!-- QQ强制全屏 -->
  18. <meta name="x5-fullscreen" content="true" />
  19. <!-- UC应用模式 -->
  20. <meta name="browsermode" content="application" />
  21. <!-- QQ应用模式 -->
  22. <meta name="x5-page-mode" content="app" />
  23. <!-- windows phone 点击无高光 -->
  24. <meta name="msapplication-tap-highlight" content="no" />
  25. <!-- 启用360浏览器的极速模式(webkit) -->
  26. <meta name="renderer" content="webkit" />
  27. <!-- 删除默认的苹果工具栏和菜单栏 -->
  28. <meta name="apple-mobile-web-app-capable" content="yes" />
  29. <!-- 设置顶部的bar为黑色背景色 -->
  30. <meta name="apple-mobile-web-app-status-bar-style" content="black" />
  31. <title>关注惊鸿游戏公众号领福利</title>
  32. </head>
  33. <script src="https://cdn.bootcss.com/vConsole/3.2.0/vconsole.min.js"></script>
  34. <script>
  35. var vConsole = new VConsole();
  36. </script>
  37. <body>
  38. <div id="app"></div>
  39. </body>
  40. </html>