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
| window.addEventListener('DOMContentLoaded', function() { | |
| window.addEventListener('scroll', handleScroll) | |
| }) | |
| function handleScroll() { | |
| // Grab header | |
| const header = document.querySelector('header') | |
| // Grab mid-fold section (two siblings down from header) | |
| const midFold = header.nextElementSibling.nextElementSibling |
NewerOlder