2024-02-14 16:01:14 +00:00
|
|
|
// main script
|
2024-04-18 13:34:51 +02:00
|
|
|
;(function () {
|
|
|
|
|
'use strict'
|
2024-02-14 16:01:14 +00:00
|
|
|
|
|
|
|
|
// Dropdown Menu Toggler For Mobile
|
|
|
|
|
// ----------------------------------------
|
2024-04-18 13:34:51 +02:00
|
|
|
const dropdownMenuToggler = document.querySelectorAll('.nav-dropdown > .nav-link')
|
2024-02-14 16:01:14 +00:00
|
|
|
|
|
|
|
|
dropdownMenuToggler.forEach((toggler) => {
|
2024-04-18 13:34:51 +02:00
|
|
|
toggler?.addEventListener('click', (e) => {
|
|
|
|
|
e.target.closest('.nav-item').classList.toggle('active')
|
|
|
|
|
})
|
|
|
|
|
})
|
2024-02-14 16:01:14 +00:00
|
|
|
|
|
|
|
|
// Testimonial Slider
|
|
|
|
|
// ----------------------------------------
|
2024-04-18 13:34:51 +02:00
|
|
|
// new Swiper(".testimonial-slider", {
|
|
|
|
|
// spaceBetween: 24,
|
|
|
|
|
// loop: true,
|
|
|
|
|
// pagination: {
|
|
|
|
|
// el: ".testimonial-slider-pagination",
|
|
|
|
|
// type: "bullets",
|
|
|
|
|
// clickable: true,
|
|
|
|
|
// },
|
|
|
|
|
// breakpoints: {
|
|
|
|
|
// 768: {
|
|
|
|
|
// slidesPerView: 2,
|
|
|
|
|
// },
|
|
|
|
|
// 992: {
|
|
|
|
|
// slidesPerView: 3,
|
|
|
|
|
// },
|
|
|
|
|
// },
|
|
|
|
|
// });
|
|
|
|
|
})()
|