-
Notifications
You must be signed in to change notification settings - Fork 2
/
friends.html
51 lines (47 loc) · 1.27 KB
/
friends.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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
<link href="css/mui.min.css" rel="stylesheet" />
<link rel="stylesheet" href="css/iconfont.css" />
<link rel="stylesheet" href="css/common.css" />
<link rel="stylesheet" href="css/friend.css" />
</head>
<body>
<header class="mui-bar mui-bar-nav index-bar">
<h1 class="mui-title mui-left" id="mylist">朋友</h1>
<a href="##">
<span class="icon iconfont icon-tianjia"></span>
</a>
<a href="##" >
<span class="icon iconfont icon-wode" ></span>
</a>
<a href="##">
<span class="icon iconfont icon-sousuo"></span>
</a>
</header>
<script src="js/mui.min.js"></script>
<script type="text/javascript">
mui.init({
subpages:[{
url:'friends_list.html',
id:'friends_list.html',
styles:{
top: "50px",
bottom: "0px"
},
extras:{}
}]
})
var mylist = document.getElementById("mylist");
mylist.addEventListener("tap",function(){
mui.openWindow({
url: "contacts.html",
id: "contacts.html"
})
})
</script>
</body>
</html>