react-scroll-motion
Version:
Easy to make scroll animation with ReactJS
27 lines (26 loc) • 2.36 kB
JavaScript
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.ZoomOut = exports.ZoomIn = exports.Zoom = exports.StickyOut = exports.StickyIn = exports.Sticky = exports.MoveOut = exports.MoveIn = exports.Move = exports.FadeOut = exports.FadeIn = exports.Fade = exports.batch = exports.ScrollPage = exports.ScrollContainer = exports.Animator = void 0;
var animations_1 = require("./animations");
Object.defineProperty(exports, "batch", { enumerable: true, get: function () { return animations_1.batch; } });
Object.defineProperty(exports, "Fade", { enumerable: true, get: function () { return animations_1.Fade; } });
Object.defineProperty(exports, "FadeIn", { enumerable: true, get: function () { return animations_1.FadeIn; } });
Object.defineProperty(exports, "FadeOut", { enumerable: true, get: function () { return animations_1.FadeOut; } });
Object.defineProperty(exports, "Move", { enumerable: true, get: function () { return animations_1.Move; } });
Object.defineProperty(exports, "MoveIn", { enumerable: true, get: function () { return animations_1.MoveIn; } });
Object.defineProperty(exports, "MoveOut", { enumerable: true, get: function () { return animations_1.MoveOut; } });
Object.defineProperty(exports, "Sticky", { enumerable: true, get: function () { return animations_1.Sticky; } });
Object.defineProperty(exports, "StickyIn", { enumerable: true, get: function () { return animations_1.StickyIn; } });
Object.defineProperty(exports, "StickyOut", { enumerable: true, get: function () { return animations_1.StickyOut; } });
Object.defineProperty(exports, "Zoom", { enumerable: true, get: function () { return animations_1.Zoom; } });
Object.defineProperty(exports, "ZoomIn", { enumerable: true, get: function () { return animations_1.ZoomIn; } });
Object.defineProperty(exports, "ZoomOut", { enumerable: true, get: function () { return animations_1.ZoomOut; } });
var Animator_1 = __importDefault(require("./Animator"));
exports.Animator = Animator_1.default;
var ScrollContainer_1 = __importDefault(require("./ScrollContainer"));
exports.ScrollContainer = ScrollContainer_1.default;
var ScrollPage_1 = __importDefault(require("./ScrollPage"));
exports.ScrollPage = ScrollPage_1.default;
;