leaf-framework
Version:
Light Everis Angular Frontend Framework
9 lines • 492 B
JavaScript
// 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: '-100px', 'transition-timing-function': 'ease-out' }),
animate('0.4s', style({ opacity: 1, top: '0px' }))
])
]);
//# sourceMappingURL=title-template.animation.js.map