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.
// Detect scrolling and toggle class based on scroll position
window.addEventListener('scroll', function() {
var masthead = document.getElementById('masthead');
if (window.scrollY >= 400) {
masthead.classList.add('show-header');
} else {
masthead.classList.remove('show-header');
}
});
1 Comment
A WordPress Commenter
August 1, 2024 - 6:34 pmHi, 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.