index.html 998 B

123456789101112131415161718192021222324252627282930313233
  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. <link rel="icon" href="<%= BASE_URL %>favicon.ico">
  10. <title></title>
  11. </head>
  12. <body>
  13. <noscript>
  14. <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled.
  15. Please enable it to continue.</strong>
  16. </noscript>
  17. <div id="app"></div>
  18. <!-- built files will be auto injected -->
  19. </body>
  20. <script>
  21. // 事件监听
  22. document.addEventListener('DOMContentLoaded', resetRem)
  23. window.onresize = resetRem
  24. /**
  25. * [resetRem 重置Rem数值]
  26. */
  27. function resetRem () {
  28. let documentCtx = document.documentElement
  29. documentCtx.style.fontSize = documentCtx.clientWidth / 10 + 'px'
  30. }
  31. </script>
  32. </html>