-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (70 loc) · 1.49 KB
/
index.html
File metadata and controls
70 lines (70 loc) · 1.49 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="maximum-scale=1.0,minimum-scale=1.0,user-scalable=0,initial-scale=1.0,width=device-width"/>
<meta name="format-detection" content="telephone=no,email=no,date=no,address=no">
<title>Hello APP</title>
<link rel="stylesheet" type="text/css" href="./css/api.css" />
<style type="text/css">
html, body {
height: 100%;
}
#wrap {
height: 100%;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-flex-flow: column;
}
#header {
text-align: center;
background-color: #81a9c3;
color: #fff;
width: 100%;
}
#header h1 {
font-size: 20px;
height: 44px;
line-height: 44px;
margin: 0em;
color: #fff;
}
#main {
-webkit-box-flex: 1;
-webkit-flex: 1;
}
#footer {
height: 30px;
line-height: 30px;
background-color: #81a9c3;
width: 100%;
text-align: center;
}
#footer h5 {
color: white;
}
.con {
font-size: 28px;
text-align: center;
}
</style>
</head>
<body></body>
<script type="text/javascript" src="./script/api.js"></script>
<script type="text/javascript">
apiready = function() {
api.openWin({
name : 'main',
url : './html/main/main.html',
bounces : false,
slidBackEnabled : false,
pageParam : {
key : ''
},
animation : {
type : 'none'
}
});
};
</script>
</html>