-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathutils.js
31 lines (28 loc) · 935 Bytes
/
utils.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
const createFixture = (instance, { previousClassName = '',
animationClass,
repeat = false,
offset = 0 }) => {
const run = function(isInView, isUpwards = false, offset = 0) {
instance.isInView = () => isInView
instance.run(this.el, this.binding, {offset, isUpwards, previousClassName})
}
return {
el: {
className: previousClassName,
getBoundingClientRect(){}
},
binding: {
value: animationClass,
modifiers: {repeat}
},
getClassName: function() { return this.el.className.trim() },
getClassNames: function() { return this.getClassName().split(' ') },
scrollDown: function(isInView) {
run.call(this, isInView, false, offset)
},
scrollUp: function(isInView) {
run.call(this, isInView, true, offset)
}
}
}
module.exports = createFixture