This commit is contained in:
2019-08-04 21:12:36 +02:00
parent 3e895cb113
commit 8854f3beb6
39 changed files with 265 additions and 410 deletions

View File

@@ -0,0 +1,13 @@
import {animate, style, transition, trigger} from '@angular/animations';
export const blend = trigger('blend', [
transition(':enter', [
style({opacity: 0, display: 'none'}),
animate('400ms', style({opacity: 0, display: 'none'})),
animate('300ms', style({opacity: 1, display: 'block'}))
]),
transition(':leave', [
style({opacity: 1, display: 'block'}),
animate('300ms', style({opacity: 0, display: 'none'}))
])
]);