Last active
December 6, 2023 18:02
-
-
Save javierarques/36d3cd821c5a36acd352c11f88bbf2f4 to your computer and use it in GitHub Desktop.
Sticky Sideabr With Vanilla Javascript. Detects scroll and set fixed the element. Live example: http://codepen.io/javiarques/pen/vKdgjR
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
// Sticky Nav Component | |
var Sticky = (function() { | |
'use strict'; | |
var CSS_CLASS_ACTIVE = 'is-fixed'; | |
var Sticky = { | |
element: null, | |
position: 0, | |
addEvents: function() { | |
window.addEventListener('scroll', this.onScroll.bind(this)); | |
}, | |
init: function(element) { | |
this.element = element; | |
this.addEvents(); | |
this.position = element.offsetTop ; | |
this.onScroll(); | |
}, | |
aboveScroll: function() { | |
return this.position < window.scrollY; | |
}, | |
onScroll: function(event) { | |
if (this.aboveScroll()) { | |
this.setFixed(); | |
} else { | |
this.setStatic(); | |
} | |
}, | |
setFixed: function() { | |
this.element.classList.add(CSS_CLASS_ACTIVE); | |
// not needed if added with CSS Class | |
this.element.style.position = 'fixed'; | |
this.element.style.top = 0; | |
}, | |
setStatic: function() { | |
this.element.classList.remove(CSS_CLASS_ACTIVE); | |
// not needed if added with CSS Class | |
this.element.style.position = 'static'; | |
this.element.style.top = 'auto'; | |
} | |
}; | |
return Sticky; | |
})(); | |
// Init Sticky | |
var sticky = document.querySelector('.sticky'); | |
if (sticky) | |
Sticky.init(sticky); |
For anyone getting here yet. Probably there is a better pure CSS solution.
Just use position: sticky
on your CSS element: https://developer.mozilla.org/es/docs/Web/CSS/position#sticky
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Good scripts! Very lean.
Does this support sidebar that is longer (higher) than the viewport?