UNPKG

leaf-framework

Version:
9 lines 490 B
// import the required animation functions from the angular animations module import { trigger, animate, transition, style } from '@angular/animations'; export var titleTemplateAnimation = trigger('titleTemplateAnimation', [ transition(':enter', [ style({ opacity: 0, position: 'relative', top: '-40px', 'transition-timing-function': 'ease-in' }), animate('0.3s', style({ opacity: 1, top: '0px' })) ]) ]); //# sourceMappingURL=title-template.animation.js.map