我正在使用同位素插件(http://isotope.metafizzy.co/)对我的文章进行排序和过滤。该插件运行良好,但我总是必须刷新页面,以便插件工作。 我在Firefox上使用这个插件。这是我的代码:
$(function() {
var $grid = $('.grid').isotope({
itemSelector: '.element-item',
layoutMode: 'fitRows',
animationOptions: {
duration: 600,
easing: 'linear',
queue: true
}
});
$('#filters').on( 'click', 'button', function() {
var filterValue = $(this).attr('data-filter');
$('.grid').isotope({ filter: filterValue });
});
});