1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>管理规范</title>
- <link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
- </head>
- <style>
- body {
- font-family: "pingfang SC", "MicrosoftYaHei";
- font-size: 16px;
- -webkit-font-smoothing: antialiased;
- }
- * {
- -webkit-tap-highlight-color: transparent;
- margin: 0;
- padding: 0;
- }
- .main {
- width: 100%;
- }
- .main img{
- width: 100%;
- height: auto;
- }
- </style>
- <body>
- <div class="main">
- <img src="./img/norm.png">
- </div>
- </body>
- <script>
- const baseSize = 16
- function setRem() {
- const scale = document.documentElement.clientWidth / 375
- document.documentElement.style.fontSize = baseSize * scale + 'px'
- }
- setRem()
- window.onresize = function () {
- setRem()
- }
- </script>
- </html>
|