This is a great product.
by admin | Dec 7, 2019
I needed a simple, easy-to-use way to add testimonials to my website and display them. Easy Testimonials Pro did all of that and more!
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;
});