index.html 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  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 name="apple-mobile-web-app-capable" content="yes" />
  11. <!-- 设置苹果工具栏颜色 -->
  12. <meta name="apple-mobile-web-app-status-bar-style" content="black" />
  13. <!-- 忽略页面中的数字识别为电话,忽略email识别 -->
  14. <meta name="format-detection" content="telphone=no, email=no" />
  15. <!-- 启用360浏览器的极速模式(webkit) -->
  16. <meta name="renderer" content="webkit" />
  17. <!-- 避免IE使用兼容模式 -->
  18. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  19. <meta name="HandheldFriendly" content="true" />
  20. <!-- 设置在apple上以应用模式启动时,是否全屏 -->
  21. <meta name="apple-touch-fullscreen" content="yes" />
  22. <!-- windows phone 点击无高光 -->
  23. <meta name="msapplication-tap-highlight" content="no" />
  24. <meta name="referrer" content="no-referrer" />
  25. <title>老师端</title>
  26. <style>
  27. body {
  28. background: #f1f5ff;
  29. width: 100%;
  30. }
  31. .bgImg {
  32. width: 456Px;
  33. z-index: 100;
  34. display: block;
  35. }
  36. .btnImg {
  37. width: 288Px;
  38. position: absolute;
  39. left: 50%;
  40. margin-left: -144Px;
  41. bottom: 31Px;
  42. cursor: pointer;
  43. z-index: 100;
  44. display: block;
  45. }
  46. .imgWrap {
  47. width: 456Px;
  48. height: 522Px;
  49. position: absolute;
  50. top: 141Px;
  51. left: 50%;
  52. margin-left: -288Px;
  53. z-index: 100;
  54. }
  55. /* margin-top: 300px; */
  56. .textWrap {
  57. margin-top: 300Px;
  58. text-align: center;
  59. width: 500Px;
  60. position: absolute;
  61. top: 141Px;
  62. left: 50%;
  63. margin-left: -288Px;
  64. }
  65. .subMsg {
  66. margin-top: 32Px;
  67. font-size: 22Px;
  68. line-height: 30Px;
  69. color: #777;
  70. }
  71. .subBtn {
  72. width: 231Px;
  73. height: 62Px;
  74. background: #198CFE;
  75. border-radius: 18Px;
  76. border: none;
  77. font-size: 22Px;
  78. font-weight: 600;
  79. color: #FFFFFF;
  80. line-height: 30Px;
  81. cursor: pointer;
  82. margin-top: 32Px;
  83. list-style: none outside none;
  84. text-decoration: none;
  85. }
  86. </style>
  87. </head>
  88. <!-- 按钮 https://gyt.ks3-cn-beijing.ksyuncs.com/basic/1688699779209.png -->
  89. <!-- 背景 https://gyt.ks3-cn-beijing.ksyuncs.com/basic/1688699993534.png -->
  90. <body class="myBody">
  91. <script type="text/javascript">
  92. function gotoLinlk() {
  93. console.log('点击')
  94. var agent = navigator.userAgent.toLowerCase();
  95. var isMac = function () { return /macintosh|mac os x/i.test(navigator.userAgent); }();
  96. if (agent.indexOf("win32") >= 0 || agent.indexOf("wow32") >= 0) {
  97. window.open('https://appstore.ks3-cn-beijing.ksyuncs.com/ChromeStandaloneSetup32.exe');
  98. }
  99. if (agent.indexOf("win64") >= 0 || agent.indexOf("wow64") >= 0) {
  100. window.open('https://appstore.ks3-cn-beijing.ksyuncs.com/ChromeStandaloneSetup64.exe');
  101. }
  102. if (isMac) {
  103. window.open('https://appstore.ks3-cn-beijing.ksyuncs.com/googlechrome-mac.dmg');
  104. }
  105. }
  106. function getChromeVersion() {
  107. var arr = navigator.userAgent.split(' ');
  108. var chromeVersion = '';
  109. for (var i = 0; i < arr.length; i++) {
  110. if (/chrome/i.test(arr[i])) chromeVersion = arr[i];
  111. }
  112. if (chromeVersion) {
  113. return Number(chromeVersion.split('/')[1].split('.')[0]);
  114. } else {
  115. return false;
  116. }
  117. };
  118. function IsFF() {
  119. var sAgent = window.navigator.userAgent.toLowerCase();
  120. if (sAgent.indexOf("firefox") != -1) {
  121. return true;
  122. }
  123. return false;
  124. }
  125. function isChrome() {
  126. var isChromium = window.chrome;
  127. var winNav = window.navigator;
  128. var vendorName = winNav.vendor;
  129. var isOpera = typeof window.opr !== 'undefined';
  130. var isIEedge = winNav.userAgent.indexOf('Edge') > -1;
  131. var isIOSChrome = winNav.userAgent.match('CriOS');
  132. return (
  133. isIOSChrome ||
  134. (isChromium !== null &&
  135. typeof isChromium !== 'undefined' &&
  136. vendorName === 'Google Inc.' &&
  137. isOpera === false &&
  138. isIEedge === false)
  139. );
  140. };
  141. function IEVersion() {
  142. var userAgent = navigator.userAgent; //取得浏览器的userAgent字符串
  143. var isIE = userAgent.indexOf("compatible") > -1 && userAgent.indexOf("MSIE") > -1; //判断是否IE<11浏览器
  144. var isEdge = userAgent.indexOf("Edge") > -1 && !isIE; //判断是否IE的Edge浏览器
  145. var isIE11 = userAgent.indexOf('Trident') > -1 && userAgent.indexOf("rv:11.0") > -1;
  146. if (isIE) {
  147. var reIE = new RegExp("MSIE (\\d+\\.\\d+);");
  148. reIE.test(userAgent);
  149. var fIEVersion = parseFloat(RegExp["$1"]);
  150. if (fIEVersion == 7) {
  151. return 7;
  152. } else if (fIEVersion == 8) {
  153. return 8;
  154. } else if (fIEVersion == 9) {
  155. return 9;
  156. } else if (fIEVersion == 10) {
  157. return 10;
  158. } else {
  159. return 6;//IE版本<=7
  160. }
  161. } else if (isEdge) {
  162. return 'edge';//edge
  163. } else if (isIE11) {
  164. return 11; //IE11
  165. } else {
  166. return -1;//不是ie浏览器
  167. }
  168. }
  169. (function (window) {
  170. // if (IEVersion() != -1) {
  171. // document.writeln("<pre style='text-align:center;color:#fff;background-color:#0cc; height:100%;border:0;position:fixed;top:0;left:0;width:100%;z-index:1234'>" +
  172. // "<h2 style='padding-top:200px;margin:0'><strong>" + str + "<br/></strong></h2><h2>" +
  173. // str2 + "</h2>");
  174. // document.execCommand("Stop");
  175. // };
  176. if (!isChrome()) {
  177. // document.writeln("<div class='imgWrap'><img src='https://gyt.ks3-cn-beijing.ksyuncs.com/basic/1688699993534.png' class='bgImg' alt=''><img src='https://gyt.ks3-cn-beijing.ksyuncs.com/basic/1688699779209.png' class='btnImg' alt=''></div>");
  178. if (IEVersion() < 9 && IEVersion() != -1) {
  179. document.writeln(" <div class='textWrap'><h1>当前浏览器版本过低</h1><p class='subMsg'>为了保证良好的上课体验,推荐您使用谷歌浏览器</p> <button class='subBtn' onclick='gotoLinlk()'>下载谷歌浏览器</button>");
  180. document.execCommand("Stop");
  181. } else {
  182. document.writeln(" <div class='imgWrap'><img src='https://gyt.ks3-cn-beijing.ksyuncs.com/basic/1688699993534.png' class='bgImg' alt=''><img src='https://gyt.ks3-cn-beijing.ksyuncs.com/basic/1688699779209.png' onclick='gotoLinlk()' class='btnImg' alt=''></div>");
  183. document.execCommand("Stop");
  184. }
  185. } else {
  186. if (getChromeVersion() < 90) {
  187. document.writeln(" <div class='imgWrap'><img src='https://gyt.ks3-cn-beijing.ksyuncs.com/basic/1688699993534.png' class='bgImg' alt=''><img src='https://gyt.ks3-cn-beijing.ksyuncs.com/basic/1688699779209.png' onclick='gotoLinlk()' class='btnImg' alt=''></div>");
  188. document.execCommand("Stop");
  189. window.stop()
  190. console.log('Stop')
  191. }
  192. // if (IsFF()) {
  193. }
  194. })(window);
  195. </script>
  196. <div id="app"></div>
  197. <script type="module" src="/src/main.ts"></script>
  198. </body>
  199. </html>