$(function(){ $(".nav>ul>li").hover(function() { $(this).find("ul").stop(true, false).slideDown(300); }, function() { $(this).find("ul").stop(true, false).slideUp(300); }) $('.banner').slick({ autoplay: false, infinite: true, arrows:true, pauseOnHover: true, }); $('.sect1-m').slick({ autoplay: false, infinite: true, pauseOnHover: true, }); $(".sect4>ul").slick({ dots:true, autoplay: false, infinite: true, slidesToShow: 4, slidesToScroll: 4, pauseOnHover: true, responsive: [{ breakpoint: 1320, settings: { slidesToShow: 4, slidesToScroll: 4, infinite: true, } }, { breakpoint: 1024, settings: { slidesToShow: 3, slidesToScroll: 3, } }, { breakpoint: 768, settings: { slidesToShow: 2, slidesToScroll: 2, } }, { breakpoint: 500, settings: { slidesToShow: 1, slidesToScroll: 1, } }, ] }); $(".sect5>ul").slick({ autoplay: false, infinite: true, slidesToShow: 7, slidesToScroll: 1, pauseOnHover: true, responsive: [{ breakpoint: 1024, settings: { slidesToShow: 7, slidesToScroll: 1, infinite: true, } }, { breakpoint: 768, settings: { slidesToShow: 5, slidesToScroll: 1, } }, { breakpoint: 580, settings: { slidesToShow: 3, slidesToScroll: 1, } }, { breakpoint: 375, settings: { slidesToShow: 2, slidesToScroll: 1, } }, ] }); })