Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
import { trigger, animate, transition, style, query } from '@angular/animations';
export const readyAnimation =
trigger('readyAnimation', [
transition('* => *', [
style({ opacity: 0 }),
animate(500, style({ opacity: 1 }))
])
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment