ionic-angular
Version:
A powerful framework for building mobile and progressive web apps with JavaScript and Angular
26 lines • 836 B
JavaScript
import { Animation } from '../animations/animation';
import { Transition } from './transition';
/**
* @hidden
*/
export class PageTransition extends Transition {
init() {
if (this.enteringView) {
this.enteringPage = new Animation(this.plt, this.enteringView.pageRef());
this.add(this.enteringPage.beforeAddClass('show-page'));
// Resize content before transition starts
this.beforeAddRead(() => {
this.enteringView.readReady.emit();
});
this.beforeAddWrite(() => {
this.enteringView.writeReady.emit();
});
}
}
destroy() {
super.destroy();
this.enteringPage && this.enteringPage.destroy();
this.enteringPage = null;
}
}
//# sourceMappingURL=page-transition.js.map