Created
September 26, 2019 09:32
-
-
Save marekalgoud/96dd86aa459fc5b647e13d05b809cf2d to your computer and use it in GitHub Desktop.
barba transition hooks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
beforeLeave: ({ current }) => { | |
barba.wrapper.style.height = current.container.offsetHeight + 'px' | |
}, | |
beforeEnter: ({ current, next }) => { | |
barba.wrapper.style.height = next.container.offsetHeight + 'px' | |
current.container.style.zIndex = -1 | |
next.container.style.zIndex = 1 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment