On Scroll Fixed Header

PHOTO EMBED

Wed Oct 04 2023 12:20:32 GMT+0000 (Coordinated Universal Time)

Saved by @sagarmaurya19

var bodyEle = document.querySelector('body');
var lastposition = 0;
window.addEventListener('scroll', function () {
  var currentPosition = window.scrollY || document.documentElement.scrollTop;
  if (currentPosition > 20) {
    bodyEle.classList.add('sticky-active');
  } else {
    bodyEle.classList.remove('sticky-active');
  }
  lastposition = currentPosition;
});
content_copyCOPY