-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathmain.html
More file actions
160 lines (150 loc) · 4.43 KB
/
main.html
File metadata and controls
160 lines (150 loc) · 4.43 KB
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
<!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>
<link href="css/mui.min.css" rel="stylesheet" />
<style>
ul {
font-size: 14px;
color: #8f8f94;
}
.mui-btn {
padding: 10px;
}
</style>
</head>
<body>
<header class="mui-bar mui-bar-nav" style="padding-right: 15px;">
<h1 class="mui-title">酷痞物联</h1>
<button id='setting' class=" mui-pull-right mui-btn-link">设置</button>
</header>
<nav class="mui-bar mui-bar-tab">
<a class="mui-tab-item" href="view_ctrls.html">
<span class="mui-icon mui-icon-settings"></span>
<span class="mui-tab-label">我的设备</span>
</a>
<a id="defaultTab" class="mui-tab-item mui-active" href="hub_add.html">
<span class="mui-icon mui-icon-flag"></span>
<span class="mui-tab-label">添加枢纽</span>
</a>
<a class="mui-tab-item" href="hub_mg.html">
<span class="mui-icon mui-icon-paperplane"></span>
<span class="mui-tab-label">管理枢纽</span>
</a>
</nav>
<script src="js/mui.min.js"></script>
<script src="js/app.js"></script>
<script>
(function($, doc) {
$.init();
var subpages = ['hub_add.html','view_ctrls.html', 'hub_mg.html', 'hub_edit.html', 'sub/imgs.html',
'node_add.html', 'node_mg.html', 'node_edit.html', 'sub/gens.html', 'sub/gpss.html', 'sub/vals.html'
];
var subpage_style = {
top: '45px',
bottom: '51px'
};
var aniShow = {};
$.plusReady(function() {
//创建子页面,首个选项卡页面显示,其它均隐藏;
var self = plus.webview.currentWebview();
for(var i = 0; i < subpages.length; 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 settingPage = $.preload({
"id": 'setting',
"url": 'setting.html'
});
//设置
var settingPage = null;
var settingButton = doc.getElementById('setting');
settingButton.addEventListener('tap', function(event) {
if(!settingPage) {
settingPage = plus.webview.getWebviewById('setting');
}
$.fire(settingPage, 'userInfoRefresh');
$.openWindow({
id: 'setting',
show: {
aniShow: 'pop-in'
},
styles: {
popGesture: 'hide'
},
waiting: {
autoShow: false
}
});
});
//--
$.oldBack = mui.back;
var backButtonPress = 0;
$.back = function(event) {
backButtonPress++;
if(backButtonPress > 1) {
plus.runtime.quit();
} else {
plus.nativeUI.toast('再按一次退出应用');
}
setTimeout(function() {
backButtonPress = 0;
}, 1000);
return false;
};
});
//当前激活选项
var activeTab = subpages[0];
//选项卡点击事件
mui('.mui-bar-tab').on('tap', 'a', function(e) {
var targetTab = this.getAttribute('href');
if(targetTab == activeTab) {
return;
}
//显示目标选项卡
//若为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);
}
if(targetTab == 'view_ctrls.html') {
mui.fire(plus.webview.getWebviewById(targetTab), 'reload')
}
//隐藏当前;
plus.webview.hide(activeTab);
//更改当前活跃的选项卡
activeTab = targetTab;
if(activeTab == 'hub_mg.html') {
mui.fire(plus.webview.getWebviewById(activeTab), 'reload')
}
});
//自定义事件,模拟点击“首页选项卡”
document.addEventListener('gohome', function() {
var defaultTab = document.getElementById("defaultTab");
//模拟首页点击
mui.trigger(defaultTab, 'tap');
//切换选项卡高亮
var current = document.querySelector(".mui-bar-tab>.mui-tab-item.mui-active");
if(defaultTab !== current) {
current.classList.remove('mui-active');
defaultTab.classList.add('mui-active');
}
});
}(mui, document));
</script>
</body>
</html>