Skip to content

Instantly share code, notes, and snippets.

@apsolut
Created October 12, 2021 17:00
Show Gist options
  • Save apsolut/2837de95c8afe2f72152b59f036e35fe to your computer and use it in GitHub Desktop.
Save apsolut/2837de95c8afe2f72152b59f036e35fe to your computer and use it in GitHub Desktop.
barbajs after before
barba.hooks.before((data) => {
const cols = document.querySelector('.site-branding');
gsap.to(cols, {
autoAlpha: 0,
});
});
barba.hooks.after((data) => {
const cols = document.querySelector('.site-branding');
gsap.to(cols, {
autoAlpha: 1,
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment