index.html 945 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>管理规范</title>
  7. <link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
  8. </head>
  9. <style>
  10. body {
  11. font-family: "pingfang SC", "MicrosoftYaHei";
  12. font-size: 16px;
  13. -webkit-font-smoothing: antialiased;
  14. }
  15. * {
  16. -webkit-tap-highlight-color: transparent;
  17. margin: 0;
  18. padding: 0;
  19. }
  20. .main {
  21. width: 100%;
  22. }
  23. .main img{
  24. width: 100%;
  25. height: auto;
  26. }
  27. </style>
  28. <body>
  29. <div class="main">
  30. <img src="./img/norm.png">
  31. </div>
  32. </body>
  33. <script>
  34. const baseSize = 16
  35. function setRem() {
  36. const scale = document.documentElement.clientWidth / 375
  37. document.documentElement.style.fontSize = baseSize * scale + 'px'
  38. }
  39. setRem()
  40. window.onresize = function () {
  41. setRem()
  42. }
  43. </script>
  44. </html>