UNPKG

jr-util

Version:

这是MJR的JS工具库。定期更新

10 lines (9 loc) 415 B
/** * 创建一个动画效果 * @param from 动画开始的数值 * @param to 动画结束的数值 * @param duration 动画持续的时间(毫秒) * @param onProgress 动画进行中的回调函数,接收当前动画值和完成百分比 * @returns 返回一个取消动画的函数 */ export declare const animation: (from: number, to: number, duration: number, onProgress: Function) => () => void;