react-native-fiesta
Version:
A set of celebration animations powered by Skia. Engage more with your users by celebrating in your React Native application.
30 lines (24 loc) • 445 B
text/typescript
import { screenHeight } from './dimensions';
const slowSpringSpeed = {
mass: 1,
stiffness: 0.2,
damping: 19,
};
const normalSpringSpeed = {
mass: 1,
stiffness: 0.35,
damping: 19,
};
const fastSpringSpeed = {
mass: 1,
stiffness: 0.5,
damping: 19,
};
export const FiestaSpeed = {
Slow: slowSpringSpeed,
Normal: normalSpringSpeed,
Fast: fastSpringSpeed,
};
export const singleItemFadeSpeed = {
mass: screenHeight,
};