12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width,initial-scale=1.0">
- <title>蔡氏PK公式</title>
- <link rel="stylesheet" type="text/css" href="./src/styles/layout.css">
- </head>
- <body>
- <div id="app"></div>
- <!-- built files will be auto injected -->
- </body>
- <style>
- html {
- font-size: 16px;
- }
- body {
- margin: 0px;
- padding: 0px;
- font-size: 16px;
- }
- </style>
- <script>
- (function() {
- if (typeof WeixinJSBridge == "object" && typeof WeixinJSBridge.invoke == "function") {
- handleFontSize();
- } else {
- document.addEventListener("WeixinJSBridgeReady", handleFontSize, false);
- }
- function handleFontSize() {
- // 设置网页字体为默认大小
- WeixinJSBridge.invoke('setFontSizeCallback', { 'fontSize' : 0 });
- // 重写设置网页字体大小的事件
- WeixinJSBridge.on('menu:setfont', function() {
- WeixinJSBridge.invoke('setFontSizeCallback', { 'fontSize' : 0 });
- });
- }
- })();
- </script>
- </html>
|