index.html 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <!DOCTYPE html>
  2. <html lang="">
  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. <link rel="icon" href="<%= BASE_URL %>favicon.ico">
  8. <title>
  9. 大屏数据修改
  10. </title>
  11. <style>
  12. html {
  13. font-size: 100px;
  14. }
  15. body {
  16. font-size: 0.12rem;
  17. }
  18. * {
  19. padding: 0;
  20. margin: 0;
  21. }
  22. div,
  23. p {
  24. margin: 0;
  25. padding: 0;
  26. }
  27. </style>
  28. <script>
  29. var width = document.documentElement.clientWidth || document.body.clientWidth;
  30. var ratio = width / 375;
  31. var fontSize = 100 * ratio;
  32. document.getElementsByTagName('html')[0].style['font-size'] = fontSize + 'px';
  33. </script>
  34. </head>
  35. <body>
  36. <noscript>
  37. <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
  38. </noscript>
  39. <div id="app"></div>
  40. <!-- built files will be auto injected -->
  41. </body>
  42. </html>