我使用了不错的 Isotope 教程来创建我的内容。还在 Isotope 的网站上查看了如何添加第二个过滤,但对于初学者来说,这似乎太难了。
我只想添加第二个导航以按月和年过滤。
$('#nav a').click(function(){
var selector = $(this).attr('data-filter');
$container.isotope({
filter: selector,
animationOptions: {
duration: 750,
easing: 'linear',
queue: false,
}
});
return false;
});
谢谢