Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
Hello world!
by admin | Dec 6, 2019 | Uncategorised | 1 comment
let prevScroll = window.pageYOffset;
const header = document.querySelector('.custom-header-section');
window.addEventListener('scroll', () => {
const currentScroll = window.pageYOffset;
if (currentScroll > prevScroll) {
header.classList.add('hidden'); // Hide header on scroll down
} else {
header.classList.remove('hidden'); // Show header on scroll up
}
prevScroll = currentScroll;
});
Hi, this is a comment.
To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
Commenter avatars come from Gravatar.