index.html 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport"
  7. content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no,viewport-fit=cover">
  8. <meta name="format-detection" content="telephone=no,email=no">
  9. <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate"/>
  10. <meta http-equiv="Pragma" content="no-cache"/>
  11. <meta http-equiv="Expires" content="0"/>
  12. <link rel="icon" href="<%= BASE_URL %>favicon.ico">
  13. <title>返不停</title>
  14. </head>
  15. <body>
  16. <noscript>
  17. <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled.
  18. Please enable it to continue.</strong>
  19. </noscript>
  20. <div id="app"></div>
  21. <div id="fbt-qr-code" style="display: none;"></div>
  22. <canvas id="fbt-canvas" style="display:none;"></canvas>
  23. <!-- built files will be auto injected -->
  24. </body>
  25. <script>
  26. // 事件监听
  27. document.addEventListener('DOMContentLoaded', resetRem)
  28. window.onresize = resetRem
  29. /**
  30. * [resetRem 重置Rem数值]
  31. */
  32. function resetRem () {
  33. let documentCtx = document.documentElement
  34. documentCtx.style.fontSize = documentCtx.clientWidth / 10 + 'px'
  35. }
  36. // 加载调试工具
  37. ;(function () {
  38. var host = window.location.host
  39. var domain = host.substring(0, host.indexOf('.')) || host.substring(0, host.indexOf(':'))
  40. var erudaEl = document.createElement('script')
  41. erudaEl.src = '//cdn.jsdelivr.net/npm/eruda@2.4.1/eruda.js'
  42. if (/test/.test(domain)) {
  43. document.body.appendChild(erudaEl)
  44. erudaEl.onload = function () {
  45. eruda.init()
  46. }
  47. }
  48. })()
  49. </script>
  50. </html>