我在使用同位素过滤器菜单时遇到了一些问题。我需要它根据时间戳加载信息并允许过滤。不幸的是,我的 sortBy 脚本与过滤器脚本有冲突。
这是有问题的js:
排序代码:
$('.showcase').isotope({
itemSelector: '.item',
getSortData: {
date: function ($elem) {
return $elem.attr('data-timestamp');
}
},
sortBy: 'date',
sortAscending: true,
masonry: {
columnWidth: 1
}
});
筛选菜单代码:
// filter container
var $container = $('.showcase');
$container.isotope({
itemSelector: '.thumb'
});
var $optionSets = $('.filter'),
$optionLinks = $optionSets.find('a');
$optionLinks.click(function () {
var $this = $(this);
// don't proceed if already selected
if ($this.hasClass('selected')) {
return false;
}
var $optionSet = $this.parents('.dropdown');
$optionSet.find('.selected').removeClass('selected');
$this.addClass('selected');
// make option object dynamically, i.e. { filter: '.my-filter-class' }
var options = {},
key = $optionSet.attr('data-option-key'),
value = $this.attr('data-option-value');
// parse 'false' as false boolean
value = value === 'false' ? false : value;
options[key] = value;
if (key === 'layoutMode' && typeof changeLayoutMode === 'function') {
// changes in layout modes need extra logic
changeLayoutMode($this, options)
} else {
// otherwise, apply new options
$container.isotope(options);
}
return false;
});
这是一个正常运行的 jsfiddle:http: //jsfiddle.net/3ngjL/2/
这两个代码块单独工作,但不能一起工作。如果有人可以提供一些见解,我将不胜感激。