-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathwebview.html
61 lines (58 loc) · 1.65 KB
/
webview.html
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Hello MUI</title>
<meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="stylesheet" href="css/mui.min.css">
<link rel="stylesheet" href="css/app.css" />
<style>
.mui-table-view-cell p {
display: inline-block;
}
</style>
</head>
<body>
<header class="mui-bar mui-bar-nav">
<a class="mui-action-back mui-icon mui-icon-left-nav mui-pull-left"></a>
<h1 class="mui-title"></h1>
</header>
<script src="js/mui.min.js"></script>
<script src="js/zepto.min.js"></script>
<script src="js/common.js"></script>
<script>
var w, embed, ws;
mui.init({
swipeBack: true
});
mui.plusReady(function() {
ws = plus.webview.currentWebview();
var url = ws.url;
var title = ws.title;
$(".mui-title").html(title);
var topoffset = '45px';
if(plus.navigator.isImmersedStatusbar()) { // 兼容immersed状态栏模式
topoffset = (Math.round(plus.navigator.getStatusbarHeight()) + 45) + 'px';
}
embed = plus.webview.create(url, 'embed', {
top: topoffset,
bottom: '0px',
position: 'dock',
dock: 'bottom',
bounce: 'vertical'
});
ws.append(embed);
ws.append("/js/mui.min.js");
ws.append("/js/embed.js");
embed.addEventListener('loaded', function() {
Common.closeWaiting(w);
}, false);
embed.addEventListener('loading', function() {
w = Common.showWaiting();
}, false);
});
</script>
</body>
</html>