leaf-framework
Version:
Light Everis Angular Frontend Framework
9 lines • 381 B
JavaScript
// 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