This commit is contained in:
Roman Pyrih
2026-03-11 10:45:20 +01:00
parent 947931f2b6
commit bcfc7c55ae
8 changed files with 622 additions and 16 deletions

View File

@@ -861,7 +861,18 @@ $(document).ready(function() {
spaceBetween: 20,
slidesPerView: 1,
loop: true,
speed: 1000,
effect: "fade",
navigation: {
nextEl: ".box-structure-slider .swiper-button-next",
prevEl: ".box-structure-slider .swiper-button-prev",
},
});
}
});
$(document).ready(function() {
$('body').on('click', '.page-cms-15 ._box-2 ._tiles ._tile', function() {
$(this).toggleClass('active').siblings().removeClass('active');
})
});