index.html 1.0 KB

1234567891011121314151617181920212223242526272829303132
  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" content="width=device-width,initial-scale=1.0" />
  7. <title><%= htmlWebpackPlugin.options.title %></title>
  8. </head>
  9. <body>
  10. <noscript>
  11. <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
  12. </noscript>
  13. <div id="app"></div>
  14. <script src="./data.js"></script>
  15. <script>
  16. const autoZoom = () => {
  17. var t = window.devicePixelRatio;
  18. if (t != 1) {
  19. document.body.style.zoom = -0.6 * t + 1.55;
  20. }
  21. };
  22. // 判断是windows就使用
  23. if (window.navigator.userAgent.indexOf("Windows") !== -1) {
  24. window.addEventListener("resize", autoZoom);
  25. window.addEventListener("load", autoZoom);
  26. window.addEventListener("DOMContentLoaded", autoZoom);
  27. }
  28. </script>
  29. <!-- built files will be auto injected -->
  30. </body>
  31. </html>