12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>信息</title>
- <meta name="renderer" content="webkit|ie-comp|ie-stand">
- <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
- <meta name="x5-orientation" content="portrait" />
-
- <meta name="x5-fullscreen" content="true" />
-
- <meta name="screen-orientation" content="portrait" />
-
- <meta name="full-screen" content="yes" />
- <meta name="format-detection" content="telephone=no,email=no" />
-
- <style>
- html {
- font-size: 40px;
- }
-
- @media screen and (min-width: 960px) and (max-width: 1199px) {
- html {
- font-size: 40px;
- }
- }
-
-
- @media screen and (max-width:960px) {
- html {
- font-size: 60px;
- }
- }
-
- </style>
- </head>
- <body>
- <div id="app"></div>
- <script type="text/javascript">
-
-
-
-
- </script>
- </body>
- </html>
|