scrollBoss
For everything
Requirements
This plugin requires TweenMax from GSAP
Parallax animation
// Example parallax scroll animation
scrollBoss.parallaxMofo({
hook: '.element-hook',
elem: '.element-parallax',
property: 'y',
amount: -350,
duration: 0,
easing: Power1.ease
});
Check if element is inside viewport
if(scrollBoss.getViewportOffset('.element').insideViewport) {
console.log('do something');
}