mySwiper.on("transitionStart", function() {
// вставляем текст в нужный див
$(".the-next span").text(
$('[data-swiper-slide-index="' + (mySwiper.realIndex + 1) + '"] .h2 h2').text()
);
$(".the-prev span").text(
$('[data-swiper-slide-index="' + (mySwiper.realIndex - 1) + '"] .h2 h2').text()
);
});
.swiper-pagination {position:relative}
.swiper-pagination:before {content: ''; position: absolute; left: 50%; top: 0, transform: translateX(-50%); display: block; width: 100%; height: 1px; background-color: red}
.swiper-pagination {position:relative}
.swiper-pagination:before {content: ''; position: absolute; top: 50%; left: 0, transform: translateY(-50%); display: block; width: 100%; height: 1px; background-color: red}