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" />
- <!--QQ(x5内核)浏览器强制竖屏显示-->
- <meta name="x5-fullscreen" content="true" />
- <!--QQ(x5内核)浏览器设置全屏,即无浏览器自带的顶部网址输入框,和底部浏览器工具栏-->
- <meta name="screen-orientation" content="portrait" />
- <!--设置UC浏览器的竖屏显示-->
- <meta name="full-screen" content="yes" />
- <meta name="format-detection" content="telephone=no,email=no" />
- <!-- <script src="//cdn.bootcss.com/eruda/1.3.0/eruda.min.js"></script>
- <script>
- eruda.init();
- </script> -->
- <style>
- html {
- font-size: 40px;
- }
-
- @media screen and (min-width: 960px) and (max-width: 1199px) {
- html {
- font-size: 40px;
- }
- }
- /* ipad尺寸 */
-
- @media screen and (max-width:960px) {
- html {
- font-size: 60px;
- }
- }
- /* 手机尺寸 */
- </style>
- </head>
- <body>
- <div id="app"></div>
- <script type="text/javascript">
- // (function(window, html) {
- // var fontNum = html.clientWidth / 25;
- // html.style.fontSize = fontNum + 'px';
- // })(window, document.documentElement)
- </script>
- </body>
- </html>
|