1234567891011121314151617181920212223242526272829303132333435363738 |
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="maximum-scale=1.0,minimum-scale=1.0,user-scalable=0,width=device-width,initial-scale=1.0" />
- <meta name="format-detection" content="telephone=no,email=no,date=no,address=no">
- <title>入口页面</title>
- <style>
- </style>
- </head>
- <body style="background-color: #fff">
- <script>
- apiready = function() {
- // 设置ios7的标题栏字体变亮,全局用一个就行了
- api.setStatusBarStyle({
- style: 'light'
- });
- api.openFrame({
- name: 'main',
- // url: 'dist/html/main.html', //上传打包时使用
- url: 'http://192.168.0.141:8010/html/main.html', //调试时使用
- rect: {
- x: 0,
- y: 0,
- w: 'auto',
- h: 'auto'
- },
- bounces: false,
- vScrollBarEnabled: true,
- hScrollBarEnabled: true
- });
- };
- </script>
- </body>
- </html>
|