gsap
Version:
GSAP is a JavaScript library for building high-performance animations that work in **every** major browser. Animate CSS, SVG, canvas, React, Vue, WebGL, colors, strings, motion paths, generic objects...anything JavaScript can touch! No other library deliv
32 lines (30 loc) • 638 B
JavaScript
import { gsap, Power0, Power1, Power2, Power3, Power4, Linear, Quad, Cubic, Quart, Quint, Strong, Elastic, Back, SteppedEase, Bounce, Sine, Expo, Circ, TweenMax, TweenLite, TimelineLite, TimelineMax } from "./gsap-core.js";
import { CSSPlugin } from "./CSSPlugin.js";
const gsapWithCSS = gsap.registerPlugin(CSSPlugin) || gsap; // to protect from tree shaking
export {
gsapWithCSS as gsap,
gsapWithCSS as default,
CSSPlugin,
TweenMax,
TweenLite,
TimelineMax,
TimelineLite,
Power0,
Power1,
Power2,
Power3,
Power4,
Linear,
Quad,
Cubic,
Quart,
Quint,
Strong,
Elastic,
Back,
SteppedEase,
Bounce,
Sine,
Expo,
Circ
};