-
Notifications
You must be signed in to change notification settings - Fork 236
/
pageResponse_fullPage.html
108 lines (93 loc) · 4 KB
/
pageResponse_fullPage.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no" name="viewport">
<meta content="yes" name="apple-mobile-web-app-capable">
<meta content="black" name="apple-mobile-web-app-status-bar-style">
<meta content="telephone=no" name="format-detection">
<meta content="email=no" name="format-detection">
<title>fullPage</title>
<style type="text/css">
/* ============================================================
样式重置
============================================================ */
body,p,ul,ol,li,dl,dt,dd,h1,h2,h3,h4,h5,h6,form,fieldset,legend,input,select,textarea,button,th,td{margin:0;padding:0;}
h1,h2,h3,h4,h5,h6{font-size:100%;}
ul,dl,ol{list-style:none;}
img,fieldset,input[type="submit"]{border:0 none;}
img{display:inline-block;overflow:hidden;vertical-align:top;}
em{font-style:normal;}
strong{font-weight:normal;}
table{border-collapse:collapse;border-spacing:0;}
button,input[type="button"]{cursor:pointer;border:0 none;}
textarea{word-wrap:break-word;resize:none;} /* word-wrap for opera, resize for webkit */
menu{margin:0;padding:0;}
body{-webkit-user-select:none;-webkit-text-size-adjust:none!important;font-family:Helvetica;}
input[type="number"]{-webkit-user-select:text;}
a,button,input,img{-webkit-touch-callout:none;}/* 1.ios 长按时不触发系统的菜单 2.禁止长按时下载图片 */
input,select,textarea{outline:none;}
/*框架*/
html{-ms-touch-action: none;}/* 阻止windows Phone 的默认触摸事件 */
body{overflow: hidden;}
.page-wrap{overflow:hidden}
.page{display:none;width:100%;height:100%;overflow:hidden;position:absolute;top:0;left:0}
.content{width:100%;height:100%;display:none;position:relative;z-index:0}
.current .content,.slide .content{display:block}
.current{display:block;z-index:1}
.slide{display:block;z-index:2}
.swipe{display:block;z-index:3;transition-duration:0ms!important;-webkit-transition-duration:0ms!important}
</style>
</head>
<body>
<!-- 框架[[ -->
<div id="pageContain" class="page-wrap">
<div class="page current">
<div class="content1">
<img src="demo0.jpg" alt="" width="640" height="1136">
</div>
</div>
<div class="page">
<div class="content2">
<img src="demo1.jpg" alt="" width="640" height="1136">
</div>
</div>
<div class="page">
<div class="content3">
<img src="demo2.jpg" alt="" width="640" height="1136">
</div>
</div>
</div>
<!-- 框架]] -->
</body>
<script type="text/javascript" src="http://1.peunzhang.sinaapp.com/js/fullPage.min.js?v=20150923"></script>
<script type="text/javascript">
//框架
var runPage = new FullPage({
id : 'pageContain', // id of contain
slideTime : 800, // time of slide
continuous : true, // create an infinite feel with no endpoints
effect : { // slide effect
transform : {
translate : 'Y', // 'X'|'Y'|'XY'|'none'
scale : [1, 1], // [scalefrom, scaleto]
rotate : [0, 0] // [rotatefrom, rotateto]
},
opacity : [0, 1] // [opacityfrom, opacityto]
},
mode : 'wheel,touch', // mode of fullpage
easing : 'ease' // easing('ease','ease-in','ease-in-out' or use cubic-bezier like [.33, 1.81, 1, 1] )
});
</script>
<script type="text/javascript" src="http://1.peunzhang.sinaapp.com/js/pageResponse.min.js?v=20150619"></script>
<script type="text/javascript">
window.onload = window.onresize = function(){
pageResponse({
selectors : '.content1,.content2,.content3', //模块选择器,使用querySelectorAll的方法
mode : 'contain', // auto || contain || cover ,默认模式为auto
width : '640', //输入页面的宽度,只支持输入数值,默认宽度为320px
height : '1136' //输入页面的高度,只支持输入数值,默认高度为504px
})
}
</script>
</html>