index.html 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  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>AF house</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="af-qrcode" style="display: none;"></div>
  22. <!-- built files will be auto injected -->
  23. </body>
  24. <script>
  25. // 事件监听
  26. document.addEventListener('DOMContentLoaded', resetRem)
  27. window.onresize = resetRem
  28. /**
  29. * [resetRem 重置Rem数值]
  30. */
  31. function resetRem () {
  32. let documentCtx = document.documentElement
  33. documentCtx.style.fontSize = documentCtx.clientWidth / 10 + 'px'
  34. }
  35. </script>
  36. </html>