mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 12:29:55 +08:00
fix(transition): wrong easing
This commit is contained in:
@ -87,7 +87,7 @@ export class AlertWpPopIn extends Transition {
|
||||
backdrop.fromTo('opacity', 0.01, 0.5);
|
||||
|
||||
this
|
||||
.easing('cubic-bezier(0,0 0.05,1)')
|
||||
.easing('cubic-bezier(0,0,0.05,1)')
|
||||
.duration(200)
|
||||
.add(backdrop)
|
||||
.add(wrapper);
|
||||
|
@ -87,7 +87,7 @@ export class LoadingWpPopIn extends Transition {
|
||||
backdrop.fromTo('opacity', 0.01, 0.16);
|
||||
|
||||
this
|
||||
.easing('cubic-bezier(0,0 0.05,1)')
|
||||
.easing('cubic-bezier(0,0,0.05,1)')
|
||||
.duration(200)
|
||||
.add(backdrop)
|
||||
.add(wrapper);
|
||||
|
@ -149,7 +149,7 @@ export class ToastWpPopIn extends Transition {
|
||||
wrapper.fromTo('scale', 1.3, 1);
|
||||
}
|
||||
|
||||
this.easing('cubic-bezier(0,0 0.05,1)').duration(200).add(wrapper);
|
||||
this.easing('cubic-bezier(0,0,0.05,1)').duration(200).add(wrapper);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user