mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 13:32:54 +08:00
Merge pull request #9003 from vaskou/refactor/transition-wp
fix(transition): syntax of cubic-bezier easing
This commit is contained in:
@ -24,7 +24,7 @@ export class WPTransition extends PageTransition {
|
|||||||
this.enteringPage.beforeClearStyles(['scale']);
|
this.enteringPage.beforeClearStyles(['scale']);
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
this.duration(isPresent(opts.duration) ? opts.duration : 280).easing('cubic-bezier(0,0 0.05,1)');
|
this.duration(isPresent(opts.duration) ? opts.duration : 280).easing('cubic-bezier(0,0,0.05,1)');
|
||||||
this.enteringPage
|
this.enteringPage
|
||||||
.fromTo('scale', SCALE_SMALL, 1, true)
|
.fromTo('scale', SCALE_SMALL, 1, true)
|
||||||
.fromTo('opacity', 0.01, 1, true);
|
.fromTo('opacity', 0.01, 1, true);
|
||||||
|
Reference in New Issue
Block a user