variables.ts 229 B

1234567891011121314
  1. import { springType } from './types';
  2. /**
  3. * 最大触摸时间
  4. */
  5. export const maxTouchTime: number = 200;
  6. /**
  7. * 默认动画参数
  8. */
  9. export const defaultAnimationConfig: springType = {
  10. stiffness: 240,
  11. damping: 30,
  12. };