Skip to content

Commit ed19a60

Browse files
committed
Add scroll offset support
1 parent fac0a69 commit ed19a60

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

src/index.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,12 @@ export default {
77
inserted(el, binding) {
88
const scrollAnimate = ScrollAnimate(Date.now())
99
const previousClassName = el.className
10+
const offset = parseInt(el.dataset.animateOnscrollOffset || 0);
1011
let lastScrollTop = window.pageYOffset
1112
window.addEventListener('scroll', function() {
1213
let scrollTop = window.pageYOffset || document.documentElement.scrollTop
1314
const isUpwards = scrollTop < lastScrollTop
14-
scrollAnimate.run(el, binding, {isUpwards, previousClassName})
15+
scrollAnimate.run(el, binding, {offset, isUpwards, previousClassName})
1516
lastScrollTop = scrollTop <= 0 ? 0 : scrollTop
1617
}, false)
1718
}

tests/utils.js

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
const createFixture = (instance, { previousClassName = '',
22
animationClass,
3-
repeat = false }) => {
3+
repeat = false,
4+
offset = 0 }) => {
45

5-
const run = function(isInView, isUpwards = false) {
6+
const run = function(isInView, isUpwards = false, offset = 0) {
67
instance.isInView = () => isInView
7-
instance.run(this.el, this.binding, {isUpwards, previousClassName})
8+
instance.run(this.el, this.binding, {offset, isUpwards, previousClassName})
89
}
910

1011
return {
@@ -19,10 +20,10 @@ const createFixture = (instance, { previousClassName = '',
1920
getClassName: function() { return this.el.className.trim() },
2021
getClassNames: function() { return this.getClassName().split(' ') },
2122
scrollDown: function(isInView) {
22-
run.call(this, isInView)
23+
run.call(this, isInView, false, offset)
2324
},
2425
scrollUp: function(isInView) {
25-
run.call(this, isInView, true)
26+
run.call(this, isInView, true, offset)
2627
}
2728
}
2829
}

0 commit comments

Comments
 (0)