Skip to content

Commit

Permalink
动画枚举曲线修改
Browse files Browse the repository at this point in the history
  • Loading branch information
wenwenhua committed Feb 11, 2025
1 parent 4b2d574 commit fd5ac77
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ export type AnimationProp = {
// 微信 timingFunction 和 RN Easing 对应关系
const EasingKey = {
linear: Easing.linear,
ease: Easing.ease,
'ease-in': Easing.in(Easing.ease),
'ease-in-out': Easing.inOut(Easing.ease),
'ease-out': Easing.out(Easing.ease)
ease: Easing.inOut(Easing.ease),
'ease-in': Easing.in(Easing.poly(3)),
'ease-in-out': Easing.inOut(Easing.poly(3)),
'ease-out': Easing.out(Easing.poly(3))
// 'step-start': '',
// 'step-end': ''
}
Expand Down

0 comments on commit fd5ac77

Please sign in to comment.