Skip to content

Instantly share code, notes, and snippets.

@marekalgoud
Last active September 26, 2019 08:24
Show Gist options
  • Save marekalgoud/c4ca9053abf3590a6c2280975a79ddf2 to your computer and use it in GitHub Desktop.
Save marekalgoud/c4ca9053abf3590a6c2280975a79ddf2 to your computer and use it in GitHub Desktop.
Barba.js init
import barba from '@barba/core'
import animin from './anims/in'
import animout from './anims/out'
barba.init({
transitions: [
{
leave: ({ current }) => {
// launch your leave animation here on the current container
return animout(current.container)
},
enter: ({ next }) => {
// launch your enter animation here on the next container
return animin(next.container)
},
}
]
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment