/* Design by 봄디자인 */ $('.top-slider-box-1 .page-btns > li').click(function() { $(this).addClass('active'); $(this).siblings('.active').removeClass('active'); var index = $(this).index(); // 나의 조상들 중에서 `top-slider-box-1` 클래스를 가진 녀석들 중 나와 가장 가까이 있는 단 한명만 검색한다. var $slider = $(this).closest('.top-slider-box-1'); $slider.find(' > .slides > div.active').removeClass('active'); $slider.find(' > .slides > div').eq(index).addClass('active'); }); $('.top-slider-box-1').hover(function() { $(this).attr('data-now-mouseenter', 'Y'); }, function() { $(this).attr('data-now-mouseenter', 'N'); }); setInterval(function() { if ( $('.top-slider-box-1').attr('data-now-mouseenter') == 'Y' ) { return false; } var $current = $('.top-slider-box-1 .page-btns > li.active'); var $post = $current.next(); if ( $post.length == 0 ) { $post = $('.top-slider-box-1 .page-btns > li:first-child'); } $post.click(); }, 3000);