UNPKG

react-just-parallax

Version:

React library for scroll and mousemove parallax effect ✨ Open source, production-ready

15 lines (14 loc) 526 B
import React from "react"; export interface MouseParallaxProps { strength?: number; children?: React.ReactNode; parallaxContainerRef?: React.MutableRefObject<any> | null; scrollContainerRef?: React.MutableRefObject<any> | null; shouldResetPosition?: boolean; enableOnTouchDevice?: boolean; lerpEase?: number; isAbsolutelyPositioned?: boolean; zIndex?: number | null; shouldPause?: boolean; } export declare const MouseParallax: (props: MouseParallaxProps) => JSX.Element;