cxc-szcx-uniapp/uni_modules/lime-shared/animation/ease.ts

3 lines
130 B
TypeScript
Raw Normal View History

2025-03-06 18:35:00 +00:00
import {cubicBezier} from './bezier';
export let ease = cubicBezier(0.25, 0.1, 0.25, 1);
export let linear = cubicBezier(0,0,1,1);