-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstart.html
71 lines (68 loc) · 2.77 KB
/
start.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
<!DOCTYPE html>
<html class="um">
<head>
<title></title>
<meta charset="utf-8">
<meta name="viewport" content="target-densitydpi=device-dpi, width=device-width, initial-scale=1, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<link rel="stylesheet" href="css/ui-base.css">
<link rel="stylesheet" href="css/ui-box.css">
<link rel="stylesheet" href="css/ui-color.css">
<link rel="stylesheet" href="css/ui-res.css">
<link rel="stylesheet" href="css/ui-365.css">
<script src="js/zy_control.js"></script>
<script src="js/zy_tmpl.js"></script>
<script src="js/swipe.min.js"></script>
<script src="js/beihai365_comman.js"></script>
<script src="js/beihai365_global.js"></script>
<script src="js/zepto.min.js"></script>
</head>
<body class="um-vp c-wh" ontouchstart>
<div id="page_0" class="up ub ub-ver" tabindex="0">
<!--content开始-->
<div id="content" class="ub-f1 tx-l t-bla ub-img6 res10">
<div id='slider' class='swipe'>
<div class="ub-con ub swipe-wrap">
<div class="swipeHeight">
<div class="ub-fh swipe_2"></div>
</div>
<div class="swipeHeight">
<div class="ub-fh swipe_3"></div>
</div>
<div class="swipeHeight">
<div class="ub-fh swipe_4"></div>
</div>
<div class="swipeHeight" onclick="back();">
<div class="ub-fh swipe_5"></div>
</div>
</div>
</div>
</div>
<!--content结束--><!--footer开始-->
</div>
</body>
<script>
zy_init();
window.uexOnload = function(type) {
if (!type) {
$(".swipeHeight").css({"height":$(window).height()+"px"});
window.mySwipe = new Swipe(document.getElementById('slider'), {
//startSlide : 2,
speed : 400,
//auto : 3000,
continuous : false,
disableScroll : false,
stopPropagation : false,
callback : function(index, elem) {
},
transitionEnd : function(index, elem) {
}
});
}
}
function back(){
localStorage.v15 = true;
uexWindow.evaluateScript("root", 0, "motaiYindao();");
uexWindow.closePopover('start');
}
</script>
</html>