Created
April 2, 2020 16:23
-
-
Save g3luka/49ba644eeb699b96f0e8976495247fec to your computer and use it in GitHub Desktop.
Element sticky 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
<p style="margin-bottom:100px;">Scroll this page.</p> | |
<div class="sticky"><h3>Super amazing header</h3></div> |
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 sticky = document.querySelector('.sticky'); | |
var origOffsetY = sticky.offsetTop; | |
document.addEventListener('scroll', function(e) { | |
window.scrollY >= origOffsetY ? sticky.classList.add('fixed') : | |
sticky.classList.remove('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
.fixed { position: fixed; top: 0; width: 100%; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment