-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex-menu.html
105 lines (101 loc) · 2.46 KB
/
index-menu.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<meta name="viewport" content="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">
<script src="js/mui.js"></script>
<style type="text/css">
body,.mui-content{
background-color: #333;
color:#fff;
}
.title{
margin: 35px 15px 10px;
}
.title+.content{
margin: 10px 15px 35px;
color: #bbb;
text-indent: 1em;
font-size: 14px;
line-height: 24px;
}
.mui-table-view{
margin-bottom: 35px;
}
</style>
</head>
<body>
<div class="mui-content">
<!--
<div class="title">侧滑导航</div>
<div class="content">
TODO
<span id="android-only">安卓显示 苹果不显示
</span>。
<p style="margin: 10px 15px;">
<button id="close-btn" class="mui-btn mui-btn-danger mui-btn-block" style="padding: 5px 20px;">关闭侧滑菜单</button>
</p>
</div>
-->
<div class="title" style="margin-bottom: 10px;">板块</div>
<ul class="mui-table-view mui-table-view-chevron mui-table-view-inverted" style="color: #ddd;">
<li class="mui-table-view-cell" tab="all">
<a class="mui-navigate-right" >
全部
</a>
</li>
<li class="mui-table-view-cell" tab="share">
<a class="mui-navigate-right" >
分享
</a>
</li>
<li class="mui-table-view-cell" tab="ask">
<a class="mui-navigate-right" >
问答
</a>
</li>
<li class="mui-table-view-cell" tab="job">
<a class="mui-navigate-right" >
招聘
</a>
</li>
</ul>
</div>
<script type="text/javascript" charset="utf-8">
if(!mui.os.android){
document.getElementById("android-only").style.display = "none";
}
//tab选择
mui.plusReady(function() {
mui('body').on('tap','.mui-table-view-cell',function(){
var nowTab=this.getAttribute('tab')
if(nowTab){
var list = plus.webview.getWebviewById('list.html');
mui.fire(list,'tab',{
tab:nowTab
});
close();
}
})
});
/**
* 关闭侧滑菜单
*/
function close() {
mui.fire(mui.currentWebview.opener(),"menu:close");
}
//点击“关闭侧滑菜单”按钮处理逻辑
//document.getElementById("close-btn").addEventListener("tap",close)
//监听左滑事件,若菜单已展开,左滑要关闭菜单;
window.addEventListener("swipeleft",function (e) {
if(Math.abs(e.detail.angle)>170){
close();
}
});
</script>
</body>
</html>