$(function(){ $('.slider-for').slick({ slidesToShow: 1, slidesToScroll: 1, arrows: false, slidesPerRow: 1, //보여질 행의 수 (한 줄, 두 줄 ... ) autoplay: true, //자동시작 (boolean) -default:false autoplaySpeed: 2000, //자동넘기기 시간(int, 1000ms = 1초) fade: true, asNavFor: '.slider-nav' }); $('.slider-nav').slick({ slidesToShow: 2, slidesToScroll: 1, asNavFor: '.slider-for', dots: true, slidesPerRow: 1, //보여질 행의 수 (한 줄, 두 줄 ... ) autoplay: true, //자동시작 (boolean) -default:false autoplaySpeed: 2000, //자동넘기기 시간(int, 1000ms = 1초) centerMode: true, focusOnSelect: true }); })