Skip to content

Commit

Permalink
[Motion] Use rootMargin instread of threshold to trigger slide in ani…
Browse files Browse the repository at this point in the history
…mations (#2517)

* Use rootMargin instread of threshold to trigger slide in animations

* address review comment, remove threshold
  • Loading branch information
ludoboludo authored Apr 17, 2023
1 parent dc62e32 commit ff83e44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/animations.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function initializeScrollAnimationTrigger(rootEl = document) {
if (animationTriggerElements.length === 0) return;

const observer = new IntersectionObserver(onIntersection, {
threshold: 0.1,
rootMargin: '0px 0px -50px 0px',
});
animationTriggerElements.forEach((element) => observer.observe(element));
}
Expand Down

0 comments on commit ff83e44

Please sign in to comment.