Skip to content

Instantly share code, notes, and snippets.

@mishalrai
Created July 15, 2018 11:24
Show Gist options
  • Save mishalrai/23da35d0ee3cd4161743da3f6961751e to your computer and use it in GitHub Desktop.
Save mishalrai/23da35d0ee3cd4161743da3f6961751e to your computer and use it in GitHub Desktop.
window.onscroll = function() {myFunction()};
var navbar = document.getElementById("navbar");
var sticky = navbar.offsetTop;
function myFunction() {
if (window.pageYOffset >= sticky) {
navbar.classList.add("sticky")
} else {
navbar.classList.remove("sticky");
}
}
/*
.sticky {
position: fixed;
top: 0;
width: 100%;
}
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment