Package Exports
- gsap-scroll
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gsap-scroll) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
GSAP SCROLL
개요
gsap3
용 scroll 플러그인.
install
Using npm
$ npm install gsap gsap-scroll
Using yarn
$ yarn gsap gsap-scroll
Example
예시 사이트
기본 예제 코드
import gsap from 'gsap';
import g from 'gsap-scroll';
const container = document.querySelector('.container');
const el = document.querySelector('.box');
const tl = gsap.timeline({ paused: true });
tl.to(el, {y: 400});
const tl2 = gsap.timeline({ paused: true });
tl2.fromTo('#box2',
{x: '-=200px', autoAlpha: 0},
{y: 300, x: 200, autoAlpha: 1}
);
g.progress([tl, tl2], {
triggerEl: '#container',
fixedEl: '#fixed',
duration: 400,
triggerYPercent: 20,
smooth: 0.05,
showIndicator: true,
});