-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
170 lines (153 loc) · 5.03 KB
/
index.html
File metadata and controls
170 lines (153 loc) · 5.03 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
161
162
163
164
165
166
167
168
169
170
<!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">
<style>
html,
body {
background-color: #efeff4;
}
.mui-plus .plus{
display: inline;
}
.plus{
display: none;
}
#topPopover {
position: fixed;
top: 16px;
right: 6px;
z-index: 9999;
}
</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 id="title" class="mui-title">日程</h1>
<a id="menu" class="mui-action-menu mui-icon mui-icon-plusempty mui-pull-right" onclick="add()"></a>
</header>
<nav class="mui-bar mui-bar-tab">
<a id="defaultTab" class="mui-tab-item mui-active" href="tab-webview-subpage-remind.html">
<span class="mui-icon mui-icon-list"></span>
<span class="mui-tab-label">日程</span>
</a>
<a class="mui-tab-item" href="tab-webview-subpage-note.html">
<span class="mui-icon mui-icon-star"><!--<span class="mui-badge">9</span>--></span>
<span class="mui-tab-label">笔记</span>
</a>
<a class="mui-tab-item" href="tab-webview-subpage-setting.html">
<span class="mui-icon mui-icon-settings"></span>
<span class="mui-tab-label">设置</span>
</a>
</nav>
<script src="js/mui.min.js"></script>
<script type="text/javascript" charset="utf-8">
// window.addEventListener('refresh1', function(e){//执行刷新
// console.log("返回");
// location.reload();
// });
//检索首次启动的 guide
mui.plusReady(function() {
// /**
// * 获取本地存储中launchFlag的值
// * http://www.html5plus.org/doc/zh_cn/storage.html#plus.storage.getItem
// * 若存在,说明不是首次启动,直接进入首页;
// * 若不存在,说明是首次启动,进入引导页;
// */
// var launchFlag = plus.storage.getItem("launchFlag");
// if(launchFlag) {
// mui.openWindow({
// url: "index.html",
// id: "index",
// extras: {
// mark: "index" //额外的参数,仅仅是个标识,实际开发中不用;
// }
// });
// } else {
// mui.openWindow({
// url: "guide.html",
// id: "guide"
// });
// }
});
//mui('.mui-scroll-wrapper').scroll();
//添加
function add()
{
mui.openWindow({
url:'add.html',
id:'add.html',
show: {
aniShow: 'pop-in'
}
});
}
var subpages = ['tab-webview-subpage-remind.html', 'tab-webview-subpage-note.html', 'tab-webview-subpage-setting.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;
});
//自定义事件,模拟点击“首页选项卡”
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');
}
});
</script>
</body>
</html>