-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathindex.html
53 lines (50 loc) · 1.23 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="maximum-scale=1.0,minimum-scale=1.0,user-scalable=0,width=device-width,initial-scale=1.0"/>
<title>途牛</title>
<style>
html {
height: 100%;
background-color: #FFFFFF;
}
body {
background-color: #FFFFFF;
padding: 0;
margin: 0;
display: -webkit-box;
height: 100%;
-webkit-box-orient: vertical;
}
</style>
</head>
<body>
<script>
apiready = function () {
api.setStatusBarStyle({
style: 'dark',
color: 'rgba(99,204,133,.6)'
});
try {
api.openSlidLayout({
type: 'left',
leftEdge: api.winWidth / 6.67,
fixedPane: {
name: 'win_homeFixed',
url: 'html/win_homeFixed.html',
bounces:false
},
slidPane: {
name: 'win_homeSlider',
url: 'html/win_homeSlider.html'
}
}, function (ret) {
});
} catch (e) {
alert(e)
}
}
</script>
</body>
</html>