Skip to content

Instantly share code, notes, and snippets.

@perjansson
Created May 25, 2018 08:28
Show Gist options
  • Save perjansson/bf3eb84f59ef7ef578756b093ac8d0d6 to your computer and use it in GitHub Desktop.
Save perjansson/bf3eb84f59ef7ef578756b093ac8d0d6 to your computer and use it in GitHub Desktop.
const specificAnimation1 = [
/* specific animation here */
]
const specificAnimation2 = [
/* specific animation here */
]
const specificAnimation3 = [
/* specific animation here */
]
const specificAnimation4 = [
/* specific animation here */
]
export const routerTransition = trigger('routerTransition', [
transition('* => page1', specificAnimation1),
transition('* => page2', specificAnimation2),
transition('* => page3', specificAnimation3),
transition('* => page4', specificAnimation4),
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment