parent
081f0780a3
commit
a3dd286deb
@ -0,0 +1,12 @@ |
||||
window.onscroll = function() {toggleStickyHeader()}; |
||||
|
||||
var header = document.querySelector("header"); |
||||
var sticky = header.offsetTop; |
||||
|
||||
function toggleStickyHeader() { |
||||
if (window.pageYOffset > sticky) { |
||||
header.classList.add("sticky"); |
||||
} else { |
||||
header.classList.remove("sticky"); |
||||
} |
||||
}
|
Loading…
Reference in new issue