Skip to content

Instantly share code, notes, and snippets.

@abbasogaji
Last active February 17, 2019 17:05
Show Gist options
  • Save abbasogaji/5102900d3d7348d23a950f4dd37bb600 to your computer and use it in GitHub Desktop.
Save abbasogaji/5102900d3d7348d23a950f4dd37bb600 to your computer and use it in GitHub Desktop.
Angular 7, angular animations
import { style, animate, transition } from '@angular/animations';
export function fadeIn(){
return [
transition(':enter', [
style({opacity: 0}),
animate('400ms ease-in', style({opacity: 1}))
])
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment