Skip to content

Instantly share code, notes, and snippets.

@felixzapata
Created August 20, 2014 06:25
Show Gist options
  • Save felixzapata/a0342344f627607447a2 to your computer and use it in GitHub Desktop.
Save felixzapata/a0342344f627607447a2 to your computer and use it in GitHub Desktop.
Position fixed
var menu = document.querySelector('.menu')
var menuPosition = menu.getBoundingClientRect().top;
window.addEventListener('scroll', function() {
if (window.pageYOffset >= menuPosition) {
menu.style.position = 'fixed';
menu.style.top = '0px';
} else {
menu.style.position = 'static';
menu.style.top = '';
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment