UNPKG

leaf-framework

Version:
9 lines 381 B
// import the required animation functions from the angular animations module import { trigger, animate, transition, style } from '@angular/animations'; export var fadeInAnimation = trigger('fadeInAnimation', [ transition(':enter', [ style({ opacity: 0 }), animate('0.3s', style({ opacity: 1 })) ]), ]); //# sourceMappingURL=fade-in.animation.js.map