1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
| <head>
| <meta charset="utf-8">
| <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no">
| <style>
| html,
| body {
| width: 100%;
| height: 100%;
| overflow-x: scroll;
| overflow-y: hidden;
| }
|
| body {
| margin: 0;
| }
|
| video {
| width: 300px;
| height: 225px;
| }
|
| img {
| max-width: 100%;
| -webkit-touch-callout: none;
| }
| </style>
| </head>
|
| <body>
| <div id="content" style="overflow: hidden;"></div>
| <script type="text/javascript" src="./js/uni.webview.min.js"></script>
| <script type="text/javascript" src="./js/handler.js"></script>
| </body>
|
|