react-easy-flip
Version:
A lightweight React library for smooth FLIP animations
25 lines (24 loc) • 457 B
TypeScript
export declare const fadeOut: {
from: {
opacity: number;
transform: string;
};
to: {
opacity: number;
transform: string;
};
duration: number;
easing: string;
};
export declare const fadeIn: {
from: {
opacity: number;
transform: string;
};
to: {
opacity: number;
transform: string;
};
duration: number;
easing: string;
};