gsap-scroll

0.1.5 • Public • Published

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,
});

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i gsap-scroll

    Weekly Downloads

    1

    Version

    0.1.5

    License

    MIT

    Unpacked Size

    17.4 kB

    Total Files

    4

    Last publish

    Collaborators

    • carrot-farm