import { animate, style, transition, trigger } from '@angular/animations'; export const fadeInAnimation = trigger('fadeIn', [ transition(':enter', [ style({ opacity: 0.5, }), animate( '500ms cubic-bezier(0.4, 0, 0.2, 1)', style({ opacity: 1, }) ), ]), ]);