-
-
Save mfrancois3k/ffd123a2efe564699b2edc3db555afa3 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