import { trigger, state, transition, style, animate } from '@angular/core'; export function fadeInFadeOut() { return trigger('fadeInFadeOut', [ transition(':enter', [ style({ opacity: '0' }), animate('0.15s ease-in-out', style({ opacity: '1' })) ]), transition(':leave', [ style({ opacity: '1' }), animate('0.15s ease-in-out', style({ opacity: '0' })) ]) ]); }