index.html 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. <!-- Bytedance Tracking -->
  33. <script>
  34. (function(r, d, s, l) {
  35. var meteor = r.meteor = r.meteor || [];
  36. meteor.methods = ["track", "off", "on"];
  37. meteor.factory = function(method) {
  38. return function() {
  39. var args = Array.prototype.slice.call(arguments);
  40. args.unshift(method);
  41. meteor.push(args);
  42. return meteor
  43. }
  44. };
  45. for (var i = 0; i < meteor.methods.length; i++) {
  46. var key = meteor.methods[i];
  47. meteor[key] = meteor.factory(key)
  48. }
  49. meteor.load = function() {
  50. var js, fjs = d.getElementsByTagName(s)[0];
  51. js = d.createElement(s);
  52. js.src = "https://analytics.snssdk.com/meteor.js/v1/" + l + "/sdk";
  53. fjs.parentNode.insertBefore(js, fjs)
  54. };
  55. meteor.load();
  56. if (meteor.invoked) {
  57. return
  58. }
  59. meteor.invoked = true;
  60. meteor.track("pageview")
  61. })(window, document, "script", "1704442284527624");
  62. </script>
  63. <!-- End Bytedance Tracking -->
  64. </head>
  65. <!-- <script src="https://cdn.bootcss.com/vConsole/3.2.0/vconsole.min.js"></script> -->
  66. <script>
  67. // var vConsole = new VConsole();
  68. </script>
  69. <body>
  70. <div id="app"></div>
  71. </body>
  72. </html>