2016-07-31 3 views
0

페이지 매김을 가리킬 때 실제로 내 매끄러운 슬라이더를 슬라이드하고 싶습니다. jQuery를 설치했지만 작동하지 않습니다.매김 호버에 매끄러운 슬라이드

다음
jQuery('.slick-dots li').on('mouseover', function() { 
     // console.log('hover'); 
     jQuery(this).parents('.slide').slick('goTo', jQuery(this).index()); 
}); 

는 Codepen 예입니다 : Codepen Link

+0

야에있는 요소를 트리거 단지 .slide' .slider''에'변경할 수 있습니다! http://codepen.io/anon/pen/PzBxzP –

+0

OMG !!! 죄송합니다. 그런 바보 같은 내가있다 !! –

답변

0

당신은 단순히 마우스 오버

jQuery('.slick-dots li').on('mouseover', function() { 
     jQuery(this).trigger('click'); 
});