123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- import { Animation } from '../../animations/animation';
- import { Transition } from '../../transitions/transition';
- export class ActionSheetSlideIn extends Transition {
- init() {
- const ele = this.enteringView.pageRef().nativeElement;
- const backdrop = new Animation(this.plt, ele.querySelector('ion-backdrop'));
- const wrapper = new Animation(this.plt, ele.querySelector('.action-sheet-wrapper'));
- backdrop.fromTo('opacity', 0.01, 0.4);
- wrapper.fromTo('translateY', '100%', '0%');
- this.easing('cubic-bezier(.36,.66,.04,1)').duration(400).add(backdrop).add(wrapper);
- }
- }
- export class ActionSheetSlideOut extends Transition {
- init() {
- const ele = this.leavingView.pageRef().nativeElement;
- const backdrop = new Animation(this.plt, ele.querySelector('ion-backdrop'));
- const wrapper = new Animation(this.plt, ele.querySelector('.action-sheet-wrapper'));
- backdrop.fromTo('opacity', 0.4, 0);
- wrapper.fromTo('translateY', '0%', '100%');
- this.easing('cubic-bezier(.36,.66,.04,1)').duration(300).add(backdrop).add(wrapper);
- }
- }
- export class ActionSheetMdSlideIn extends Transition {
- init() {
- const ele = this.enteringView.pageRef().nativeElement;
- const backdrop = new Animation(this.plt, ele.querySelector('ion-backdrop'));
- const wrapper = new Animation(this.plt, ele.querySelector('.action-sheet-wrapper'));
- backdrop.fromTo('opacity', 0.01, 0.26);
- wrapper.fromTo('translateY', '100%', '0%');
- this.easing('cubic-bezier(.36,.66,.04,1)').duration(400).add(backdrop).add(wrapper);
- }
- }
- export class ActionSheetMdSlideOut extends Transition {
- init() {
- const ele = this.leavingView.pageRef().nativeElement;
- const backdrop = new Animation(this.plt, ele.querySelector('ion-backdrop'));
- const wrapper = new Animation(this.plt, ele.querySelector('.action-sheet-wrapper'));
- backdrop.fromTo('opacity', 0.26, 0);
- wrapper.fromTo('translateY', '0%', '100%');
- this.easing('cubic-bezier(.36,.66,.04,1)').duration(450).add(backdrop).add(wrapper);
- }
- }
- export class ActionSheetWpSlideIn extends Transition {
- init() {
- const ele = this.enteringView.pageRef().nativeElement;
- const backdrop = new Animation(this.plt, ele.querySelector('ion-backdrop'));
- const wrapper = new Animation(this.plt, ele.querySelector('.action-sheet-wrapper'));
- backdrop.fromTo('opacity', 0.01, 0.16);
- wrapper.fromTo('translateY', '100%', '0%');
- this.easing('cubic-bezier(.36,.66,.04,1)').duration(400).add(backdrop).add(wrapper);
- }
- }
- export class ActionSheetWpSlideOut extends Transition {
- init() {
- const ele = this.leavingView.pageRef().nativeElement;
- const backdrop = new Animation(this.plt, ele.querySelector('ion-backdrop'));
- const wrapper = new Animation(this.plt, ele.querySelector('.action-sheet-wrapper'));
- backdrop.fromTo('opacity', 0.1, 0);
- wrapper.fromTo('translateY', '0%', '100%');
- this.easing('cubic-bezier(.36,.66,.04,1)').duration(450).add(backdrop).add(wrapper);
- }
- }
- //# sourceMappingURL=action-sheet-transitions.js.map
|