@ar-dacity/ardacity-scroll-reveal
Version:
Scroll reveal animations with blur and opacity effects for React applications
16 lines (15 loc) • 465 B
TypeScript
import type React from "react";
export type ScrollRevealProps = {
children?: React.ReactNode;
scrollContainerRef?: React.RefObject<any>;
enableBlur?: boolean;
baseOpacity?: number;
baseRotation?: number;
blurStrength?: number;
containerClassName?: string;
textClassName?: string;
rotationEnd?: string;
wordAnimationEnd?: string;
};
export declare const ScrollReveal: React.FC<ScrollRevealProps>;
export default ScrollReveal;