Created
August 20, 2014 06:25
-
-
Save felixzapata/a0342344f627607447a2 to your computer and use it in GitHub Desktop.
Position fixed
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
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