-
Notifications
You must be signed in to change notification settings - Fork 0
/
mine.html
39 lines (33 loc) · 1.02 KB
/
mine.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
<!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" />
</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 class="mui-title">我的</h1>
</header>
<div class="mui-content">
</div>
<script src="js/mui.min.js"></script>
<script type="text/javascript">
mui.init({
subpages: [{
url: "http://ganquanzhong.top", //子页面HTML地址,支持本地地址和网络地址
id: "http://ganquanzhong.top", //子页面标志
styles: {
top: "45px", //子页面顶部位置
bottom: "-20px", //子页面底部位置
width: "100%" //, //子页面宽度,默认为100%
//height: "100%", //子页面高度,默认为100%
},
extras: {} //额外扩展参数
}]
});
</script>
</body>
</html>