Skip to content

Instantly share code, notes, and snippets.

@cziem
Created November 12, 2018 10:22
Show Gist options
  • Select an option

  • Save cziem/e53d3bd1fc299021e61ff19a527bdb85 to your computer and use it in GitHub Desktop.

Select an option

Save cziem/e53d3bd1fc299021e61ff19a527bdb85 to your computer and use it in GitHub Desktop.
write a function to control fixation
const stickyNav = () => {
if (window.scrollY >= navTop) {
document.body.classList.add('fixed_nav')
} else {
document.body.classList.remove('fixed_nav')
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment