Skip to content

Commit 09c08e9

Browse files
committed
fix(transition): wrong easing
1 parent 7735be7 commit 09c08e9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/components/alert/alert-transitions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export class AlertWpPopIn extends Transition {
8787
backdrop.fromTo('opacity', 0.01, 0.5);
8888

8989
this
90-
.easing('cubic-bezier(0,0 0.05,1)')
90+
.easing('cubic-bezier(0,0,0.05,1)')
9191
.duration(200)
9292
.add(backdrop)
9393
.add(wrapper);

src/components/loading/loading-transitions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export class LoadingWpPopIn extends Transition {
8787
backdrop.fromTo('opacity', 0.01, 0.16);
8888

8989
this
90-
.easing('cubic-bezier(0,0 0.05,1)')
90+
.easing('cubic-bezier(0,0,0.05,1)')
9191
.duration(200)
9292
.add(backdrop)
9393
.add(wrapper);

src/components/toast/toast-transitions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ export class ToastWpPopIn extends Transition {
149149
wrapper.fromTo('scale', 1.3, 1);
150150
}
151151

152-
this.easing('cubic-bezier(0,0 0.05,1)').duration(200).add(wrapper);
152+
this.easing('cubic-bezier(0,0,0.05,1)').duration(200).add(wrapper);
153153
}
154154
}
155155

0 commit comments

Comments
 (0)