Смотрите также
// 13-08-2026 (function() { const thumbsSwiper = document.querySelector('.js-slider-thumbs')?.swiper; if (!thumbsSwiper) return; const arrowUp = document.querySelector('.gallery-arrow--up'); const arrowDown = document.querySelector('.gallery-arrow--down'); thumbsSwiper.on('reachBeginning', () => arrowUp.classList.add('is-hidden')); thumbsSwiper.on('fromEdge', () => arrowUp.classList.remove('is-hidden')); thumbsSwiper.on('reachEnd', () => arrowDown.classList.add('is-hidden')); thumbsSwiper.on('toEdge', () => arrowDown.classList.remove('is-hidden')); })(); // 13-08-2026