// var swiper = new Swiper('.swiper-container', { // slidesPerView: 1, // spaceBetween: 5, // centeredSlides: false, // loop: true, // // autoplay: { // // delay: 2500, // // disableOnInteraction: false, // // }, // navigation: { // nextEl: '.swiper-button-next', // prevEl: '.swiper-button-prev', // }, // pagination: { // el: '.swiper-pagination', // clickable: true, // }, // breakpoints: { // 320: { // slidesPerView: 1, // spaceBetween: 20, // }, // 640: { // slidesPerView: 1, // spaceBetween: 10, // }, // 768: { // slidesPerView: 1, // spaceBetween: 10, // }, // 1024: { // slidesPerView: 1, // spaceBetween: 10, // }, // 1300: { // slidesPerView: 1, // spaceBetween: 10, // }, // 1600: { // slidesPerView: 1, // spaceBetween: 5, // }, // 1700: { // slidesPerView: 1, // spaceBetween: 10, // } // } // }); // Hamburger menu Responsive $(document).ready(function(){ $(".hamburger").click(function(){ $(this).toggleClass("is-active"); }); }); $('.dropdown').on('show.bs.dropdown', function(e){ $(this).find('.dropdown-menu').first().stop(true, true).slideDown(300); }); $('.dropdown').on('hide.bs.dropdown', function(e){ $(this).find('.dropdown-menu').first().stop(true, true).slideUp(200); });