swiper
https://swiperjs.com/get-startedsection 4
section 4
после отображения section 3
на 100% по высоте? const swiper = new Swiper('.swiper-container', {
// настройки Swiper
});
swiper.on('transitionEnd', function () {
const activeSlide = swiper.slides[swiper.activeIndex];
const section4 = activeSlide.querySelector('.section-4');
if (section4) {
section4.scrollIntoView({ behavior: 'smooth' });
}
});