-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
188 lines (176 loc) · 4.9 KB
/
index.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
<title></title>
<script src="js/mui.min.js"></script>
<link href="css/mui.min.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="css/mycss.css" />
<link rel="stylesheet" type="text/css" href="css/icons-extra.css" />
<script type="text/javascript" charset="utf-8">
// mui.init({
// // subpages: [{
// // url: 'wechat.html',
// // id: 'wechat',
// // styles: {
// // top: '45px',
// // bottom: '45px'
// // }
// // }],
// preloadPages: [{
// url: 'wechat.html',
// id: 'wechat',
// styles: {
// top: '45px',
// bottom: '45px'
// }
// },
// {
// url: 'contact.html',
// id: 'contact',
// styles: {
// top: '45px',
// bottom: '45px'
// }
// },
// {
// url: 'find.html',
// id: 'find',
// styles: {
// top: '45px',
// bottom: '45px'
// }
// }, {
// url: 'me.html',
// id: 'me',
// styles: {
// top: '45px',
// bottom: '45px'
// }
// }
// ]
// })
</script>
<style type="text/css">
.mui-title {
position: relative;
}
.mui-bar .mui-title {
left: 8px;
}
.myIcon {
color: white;
display: inline-block;
margin-right: 15px;
}
.mui-bar-nav.mui-bar .mui-icon {
margin-right: 0px;
margin-left: 3px;
}
.mui-bar-nav~.mui-content {
padding-top: 30px;
}
</style>
</head>
<body>
<header class="mui-bar mui-bar-nav nav1">
<h3 class="mui-title mui-pull-left" id="title">微信</h3>
<a href="#popover" class="mui-icon myIcon mui-pull-right mui-popover-bottom" id="sheet">
+
</a>
<span class="mui-icon mui-icon-search mui-pull-right myIcon"></span>
</header>
<nav class="mui-bar mui-bar-tab " id="nav1">
<a class="mui-tab-item mui-active" id='wechat' href="wechat.html">
<span class="mui-icon mui-icon mui-icon-chat"></span>
<span class="mui-tab-label">微信</span>
</a>
<a class="mui-tab-item" id='contact' href="contact.html">
<span class="mui-icon mui-icon-contact"></span>
<span class="mui-tab-label">通讯录</span>
</a>
<a class="mui-tab-item" id='find' href="find.html">
<span class="mui-icon mui-icon-extra mui-icon-extra-find"></span>
<span class="mui-tab-label">发现</span>
</a>
<a class="mui-tab-item" id="me" href="me.html">
<span class="mui-icon mui-icon-person"></span>
<span class="mui-tab-label">我</span>
</a>
</nav>
</body>
<script type="text/javascript">
mui.init();
var subpages = ['wechat.html', 'contact.html', 'find.html', 'me.html'];
var subpage_style = {
top: '45px',
bottom: '51px'
};
var aniShow = {};
//创建子页面,首个选项卡页面显示,其它均隐藏;
mui.plusReady(function() {
var self = plus.webview.currentWebview();
for(var i = 0; i < 4; i++) {
var temp = {};
var sub = plus.webview.create(subpages[i], subpages[i], subpage_style);
if(i > 0) {
sub.hide();
} else {
temp[subpages[i]] = "true";
mui.extend(aniShow, temp);
}
self.append(sub);
}
});
//当前激活选项
var activeTab = subpages[0];
var title = document.getElementById("title");
//选项卡点击事件
mui('.mui-bar-tab').on('tap', 'a', function(e) {
var targetTab = this.getAttribute('href');
if(targetTab == activeTab) {
return;
}
//更换标题
title.innerHTML = this.querySelector('.mui-tab-label').innerHTML;
//显示目标选项卡
//若为iOS平台或非首次显示,则直接显示
if(mui.os.ios || aniShow[targetTab]) {
plus.webview.show(targetTab);
} else {
//否则,使用fade-in动画,且保存变量
var temp = {};
temp[targetTab] = "true";
mui.extend(aniShow, temp);
plus.webview.show(targetTab, "fade-in", 300);
}
//隐藏当前;
plus.webview.hide(activeTab);
//更改当前活跃的选项卡
activeTab = targetTab;
});
//自定义事件,模拟点击“首页选项卡”
// mui.plusReady(function() {
// setTimeout(function(){
// console.log('开始');
// var wechatP = plus.webview.getWebviewById('wechat');
// if(wechatP != null) wechatP.show();
// },1000)
//
//
// var nowcur = 'wechat';
// mui("#nav1").on('tap', 'a', function() {
// //if(this.id == nowcur) return;
// if(this.id != nowcur) {
// var ov = plus.webview.getWebviewById(nowcur);
// //ov.hide();
// }
// var vv = plus.webview.getWebviewById(this.id);
// console.log('切换:' + this.id);
// vv.show();
// nowcur = this.id;
// })
// })
</script>
</html>