UNPKG

react-awesome-reveal

Version:

React components to add reveal animations using the Intersection Observer API and CSS Animations.

9 lines (8 loc) 379 B
import { Keyframes, SerializedStyles } from '@emotion/react'; export declare function getAnimationCss({ duration, delay, timingFunction, keyframes, iterationCount, }: { duration?: number | undefined; delay?: number | undefined; timingFunction?: string | undefined; keyframes?: Keyframes | undefined; iterationCount?: number | undefined; }): SerializedStyles;