jQuery(document).ready(function($) { var headingTexts = [ "Comfortable Living, Brighter Future", // Text untuk slide 1 "Discover Modern Architecture", // Text untuk slide 2 "Luxury & Elegance in Every Detail" // Text untuk slide 3 ]; $('.carousel-slider .swiper-slide').each(function(index) { $(this).attr('data-index', index); }); $('.carousel-slider').on('slideChange', function(event) { var activeIndex = $('.swiper-slide-active').data('index'); $('.dynamic-heading').text(headingTexts[activeIndex]); }); });
Skip to content