mirror of
https://github.com/zhom/donutbrowser.git
synced 2026-07-23 04:41:00 +02:00
11 lines
207 B
TypeScript
11 lines
207 B
TypeScript
export const MOTION_EASE_OUT: [number, number, number, number] = [
|
|
0.23, 1, 0.32, 1,
|
|
];
|
|
|
|
export const MOTION_SPRING_POSITION = {
|
|
type: "spring" as const,
|
|
stiffness: 500,
|
|
damping: 30,
|
|
mass: 0.5,
|
|
};
|