UNPKG

lightswind

Version:

A professionally designed animate react component library & templates market that brings together functionality, accessibility, and beautiful aesthetics for modern applications.

27 lines (26 loc) 843 B
import React from 'react'; export interface ThreeDHoverGalleryProps { images?: string[]; itemWidth?: number; itemHeight?: number; gap?: number; perspective?: number; hoverScale?: number; transitionDuration?: number; backgroundColor?: string; grayscaleStrength?: number; brightnessLevel?: number; activeWidth?: number; rotationAngle?: number; zDepth?: number; enableKeyboardNavigation?: boolean; autoPlay?: boolean; autoPlayDelay?: number; className?: string; style?: React.CSSProperties; onImageClick?: (index: number, image: string) => void; onImageHover?: (index: number, image: string) => void; onImageFocus?: (index: number, image: string) => void; } declare const ThreeDHoverGallery: React.FC<ThreeDHoverGalleryProps>; export default ThreeDHoverGallery;