mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
114 lines
3.1 KiB
TypeScript
114 lines
3.1 KiB
TypeScript
import { Animation } from '../../animations/animation';
|
|
import { Transition } from '../../transitions/transition';
|
|
|
|
|
|
/**
|
|
* Animations for alerts
|
|
*/
|
|
export class AlertPopIn 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('.alert-wrapper'));
|
|
|
|
wrapper.fromTo('opacity', 0.01, 1).fromTo('scale', 1.1, 1);
|
|
backdrop.fromTo('opacity', 0.01, 0.3);
|
|
|
|
this
|
|
.easing('ease-in-out')
|
|
.duration(200)
|
|
.add(backdrop)
|
|
.add(wrapper);
|
|
}
|
|
}
|
|
|
|
|
|
export class AlertPopOut 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('.alert-wrapper'));
|
|
|
|
wrapper.fromTo('opacity', 0.99, 0).fromTo('scale', 1, 0.9);
|
|
backdrop.fromTo('opacity', 0.3, 0);
|
|
|
|
this
|
|
.easing('ease-in-out')
|
|
.duration(200)
|
|
.add(backdrop)
|
|
.add(wrapper);
|
|
}
|
|
}
|
|
|
|
|
|
export class AlertMdPopIn 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('.alert-wrapper'));
|
|
|
|
wrapper.fromTo('opacity', 0.01, 1).fromTo('scale', 1.1, 1);
|
|
backdrop.fromTo('opacity', 0.01, 0.5);
|
|
|
|
this
|
|
.easing('ease-in-out')
|
|
.duration(200)
|
|
.add(backdrop)
|
|
.add(wrapper);
|
|
}
|
|
}
|
|
|
|
|
|
export class AlertMdPopOut 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('.alert-wrapper'));
|
|
|
|
wrapper.fromTo('opacity', 0.99, 0).fromTo('scale', 1, 0.9);
|
|
backdrop.fromTo('opacity', 0.5, 0);
|
|
|
|
this
|
|
.easing('ease-in-out')
|
|
.duration(200)
|
|
.add(backdrop)
|
|
.add(wrapper);
|
|
}
|
|
}
|
|
|
|
|
|
export class AlertWpPopIn 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('.alert-wrapper'));
|
|
|
|
wrapper.fromTo('opacity', 0.01, 1).fromTo('scale', 1.3, 1);
|
|
backdrop.fromTo('opacity', 0.01, 0.5);
|
|
|
|
this
|
|
.easing('cubic-bezier(0,0,0.05,1)')
|
|
.duration(200)
|
|
.add(backdrop)
|
|
.add(wrapper);
|
|
}
|
|
}
|
|
|
|
|
|
export class AlertWpPopOut 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('.alert-wrapper'));
|
|
|
|
wrapper.fromTo('opacity', 0.99, 0).fromTo('scale', 1, 1.3);
|
|
backdrop.fromTo('opacity', 0.5, 0);
|
|
|
|
this
|
|
.easing('ease-out')
|
|
.duration(150)
|
|
.add(backdrop)
|
|
.add(wrapper);
|
|
}
|
|
}
|