-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathindex.js
222 lines (199 loc) · 5.85 KB
/
index.js
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
(function() {
'use strict'
var fullpage = {}
var opt = {
start: 0,
duration: 500,
loop: false,
dir: 'v',
der: 0.1,
movingFlag: false,
preventWechat: false,
needInitAfterUpdated: false,
beforeChange: function(data) {},
afterChange: function(data) {}
}
fullpage.install = function (Vue, options) {
var that = fullpage
Vue.directive('fullpage', {
inserted: function (el, binding, vnode) {
var opts = binding.value || {}
that.init(el, opts, vnode)
},
componentUpdated: function (el, binding, vnode) {
if (!that.o.needInitAfterUpdated) {
return
}
var opts = binding.value || {}
that.init(el, opts, vnode)
}
})
Vue.directive('animate', {
inserted: function (el, binding, vnode) {
if (binding.value) {
that.initAnimate(el, binding, vnode)
}
}
})
}
fullpage.initAnimate = function (el, binding, vnode) {
var that = fullpage
var vm = vnode.context
var aminate = binding.value
el.style.opacity = '0'
vm.$on('toogle_animate', function (curIndex) {
var parent = el.parentNode
while(parent.getAttribute('data-id') === null) {
parent = parent.parentNode
}
var curPage = +parent.getAttribute('data-id')
if (curIndex === curPage) {
that.addAnimated(el, aminate)
} else {
if (el.setTimeout) {
clearTimeout(el.setTimeout)
}
el.style.opacity = '0'
that.removeAnimated(el, aminate)
}
})
}
fullpage.addAnimated = function (el, animate) {
var delay = animate.delay || 0
el.classList.add('animated')
el.setTimeout =window.setTimeout(function () {
el.style.opacity = '1'
el.classList.add(animate.value)
}, delay)
}
fullpage.removeAnimated = function (el, animate) {
ar classes = el.getAttribute('class')
if (classes && classes.indexOf('animated') > -1) {
el.classList.remove(animate.value)
}
}
fullpage.assignOpts = function (option) {
var that = fullpage
var o = option || {}
for (var key in opt) {
if (!o.hasOwnProperty(key)) {
o[key] = opt[key]
}
}
that.o = o
}
fullpage.initScrollDirection = function () {
if (this.o.dir !== 'v') {
this.el.classList.add('fullpage-wp-h')
}
}
fullpage.init = function (el, options, vnode) {
var that = fullpage
that.assignOpts(options)
that.vm = vnode.context
that.vm.$fullpage = that
that.curIndex = that.o.start
that.startY = 0
that.o.movingFlag = false
that.el = el
that.el.classList.add('fullpage-wp')
that.parentEle = that.el.parentNode
that.parentEle.classList.add('fullpage-container')
that.pageEles = that.el.children
that.total = that.pageEles.length
that.initScrollDirection()
window.setTimeout(function () {
that.width = that.parentEle.offsetWidth
that.height = that.parentEle.offsetHeight
for (var i = 0; i < that.pageEles.length; i++) {
var pageEle = that.pageEles[i]
pageEle.setAttribute('data-id', i)
pageEle.classList.add('page')
pageEle.style.width = that.width + 'px'
pageEle.style.height = that.height + 'px'
that.initEvent(pageEle)
}
that.moveTo(that.curIndex, false)
}, 0)
}
fullpage.initEvent = function (el) {
var that = fullpage
that.prevIndex = that.curIndex
el.addEventListener('touchstart', function (e) {
if (that.o.movingFlag) {
return false
}
that.startX = e.targetTouches[0].pageX
that.startY = e.targetTouches[0].pageY
})
el.addEventListener('touchend', function(e) {
if (that.o.movingFlag) {
return false
}
var dir = that.o.dir
var sub = dir === 'v' ? (e.changedTouches[0].pageY - that.startY) / that.height : (e.changedTouches[0].pageX - that.startX) / that.width
var der = sub > that.o.der ? -1 : sub < -that.o.der ? 1 : 0
// that.curIndex推迟到moveTo执行完之后再更新
var nextIndex = that.curIndex + der
if (nextIndex >= 0 && nextIndex < that.total) {
that.moveTo(nextIndex, true)
} else {
if (that.o.loop) {
nextIndex = nextIndex < 0 ? that.total - 1 : 0
that.moveTo(nextIndex, true)
} else {
that.curIndex = nextIndex < 0 ? 0 : that.total - 1
}
}
})
if (that.o.preventWechat) {
el.addEventListener('touchmove', function(e) {
e.preventDefault()
})
}
}
fullpage.moveTo = function (curIndex, anim) {
var that = fullpage
var dist = that.o.dir === 'v' ? (curIndex) * (-that.height) : curIndex * (-that.width)
that.o.movingFlag = true
var flag = that.o.beforeChange(that.prevIndex, curIndex)
if (flag === false) {
// 重置movingFlag
that.o.movingFlag = false
return false
}
that.curIndex = curIndex
if (anim) {
that.el.classList.add('anim')
} else {
that.el.classList.remove('anim')
}
that.move(dist)
window.setTimeout(function () {
that.o.afterChange(that.prevIndex, curIndex)
that.o.movingFlag = false
that.prevIndex = curIndex
that.vm.$emit('toogle_animate', curIndex)
}, that.o.duration)
}
fullpage.move = function (dist) {
var xPx = '0px'
var yPx = '0px'
if (this.o.dir === 'v') {
yPx = dist + 'px'
} else {
xPx = dist + 'px'
}
this.el.style.cssText += ('-webkit-transform:translate3d(' + xPx + ', ' + yPx + ', 0px);transform:translate3d(' + xPx + ', ' + yPx + ', 0px);')
}
if (typeof exports === 'object') {
module.exports = fullpage
} else if (typeof define === 'function' && define.amd) {
define([], function() {
return fullpage
})
} else if (window.Vue) {
window.VueFullpage = fullpage
Vue.use(fullpage)
}
})()