Skip to content

Instantly share code, notes, and snippets.

@emiremiroglu
Last active November 4, 2023 09:01
Show Gist options
  • Save emiremiroglu/f9020a8ae6d5cf758b3605aefec42d51 to your computer and use it in GitHub Desktop.
Save emiremiroglu/f9020a8ae6d5cf758b3605aefec42d51 to your computer and use it in GitHub Desktop.
Add class on scroll vanilla.js
(function () {
let scrollPosition = window.scrollY;
let header = document.querySelector('header');
window.addEventListener('scroll', function () {
scrollPosition = window.scrollY;
if (scrollPosition >= 30) {
header.classList.add('scrolled');
} else {
header.classList.remove('scrolled');
}
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment