Created
November 12, 2018 10:24
-
-
Save cziem/c30b9bc655d3619dfe753403239ad2b9 to your computer and use it in GitHub Desktop.
a full version of the main.js file
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
| const nav = document.querySelector('nav') | |
| let navTop = nav.offsetTop | |
| const stickyNav = () => { | |
| if (window.scrollY >= navTop) { | |
| document.body.classList.add('fixed_nav') | |
| } else { | |
| document.body.classList.remove('fixed_nav') | |
| } | |
| } | |
| window.addEventListener('scroll', stickyNav) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment