마지막 업데이트 : 2021년 09월 24일
조회수 : 

isotope filter animation 속도 조정하기

Written by: doogak
  • 네이버 블로그 공유하기
  • 네이버 밴드에 공유하기
  • 페이스북 공유하기
  • 트위터 공유하기
  • 카카오스토리 공유하기
jQuery(document).ready( function() {
	
	var $grid = jQuery('.grid').isotope({
    itemSelector: '.grid-item',
    layoutMode: 'fitRows',
		stagger: 30,
		transitionDuration: 1000,
    getSortData: {
     title: '.title',
     client: '.client'
    }
  })
	
					   
  jQuery('.category').each( function() {
	    
    jQuery(this).closest('.grid-item').addClass(jQuery(this).text().toLowerCase());
    jQuery(this).remove();

	  })
  
  jQuery('[data-filter]').click( function(e) {
    
    e.preventDefault();
    
    $grid.isotope({ filter: jQuery(this).data('filter') })
    
  
	  
   
})
})
  • 네이버 블로그 공유하기
  • 네이버 밴드에 공유하기
  • 페이스북 공유하기
  • 트위터 공유하기
  • 카카오스토리 공유하기
power-switchmagnifiercross