Skip to content

Instantly share code, notes, and snippets.

@realtomaszkula
Created August 1, 2018 07:33
Show Gist options
  • Save realtomaszkula/80bf306a935a575af87c60d56f16b713 to your computer and use it in GitHub Desktop.
Save realtomaszkula/80bf306a935a575af87c60d56f16b713 to your computer and use it in GitHub Desktop.
export const slideInAnimation = animation([
style({ transform: 'translateY({{ from }})', opacity: 0 }),
animate('{{ timings }}', style({ transform: 'translateY(0)', opacity: 1 }))
]);
export const slideOutAnimation = animation([
animate(
'{{ timings }}',
style({ transform: 'translateY({{ to }})', opacity: 0 })
)
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment