Bespoke
Loafers
We work closely with you to find the perfect fit, regardless of the size or shape of your feet.
Shop
const cmsList = document.querySelector('.hero_collection_list');
const cmsItems = cmsList.children;
let activeSlideIndex = 0;
let slidesLength = cmsItems.length;
let previousScrollTop = 0;
window.addEventListener('scroll', handleScroll);
function handleScroll() {
const scrollTop = window.pageYOffset;
const delta = scrollTop - previousScrollTop;
if (delta > 0) {
// Scrolling down
activeSlideIndex++;
if (activeSlideIndex >= slidesLength) {
activeSlideIndex = slidesLength - 1;
}
} else if (delta < 0) {
// Scrolling up
activeSlideIndex--;
if (activeSlideIndex < 0) {
activeSlideIndex = 0;
}
}
cmsItems.forEach((slide, index) => {
slide.classList.toggle('scrolling_active', index === activeSlideIndex);
slide.classList.toggle('scrolling_inactive', index !== activeSlideIndex);
});
previousScrollTop = scrollTop;
}