我用jQuery同位素和各种过滤器创建了一个页面。这是简化的JSFiddle:
https://jsfiddle.net/itzuki87/21kfqhop/17/
如您所见,有3个过滤器:2个复选框和1个范围滑块。如果单独使用,所有过滤器都可以正常工作,但是当我将它们组合使用时,它只适用于最后使用的过滤器 这是因为我在使用范围滑块时使用“.show-me”类,而在使用复选框时使用其他类。
范围滑块:
$("#range").ionRangeSlider({
hide_min_max: true,
keyboard: true,
min: 0,
max: 150,
from: 20,
to: 110,
type: 'double',
step: 1,
prefix: "€",
grid: true,
onChange: function(data) {
$(".grid-item").each(function(){
price = parseInt($(this).find(".price").text(), 10);
if (data.from <= price && data.to >= price) {
$(this).addClass('show-me');
}
else {
$(this).removeClass('show-me');
}
});
$container.isotope({
itemSelector: '.grid-item',
filter: '.show-me'
});
}
});
复选框:
$checkboxes.on('change', function(){
filters = [];
$checkboxes.filter(':checked').each(function(){
filters.push(this.value);
});
filters = filters.join('');
$container.isotope({
filter: filters
});
});
我怎样才能使两种类型的过滤器同步工作?谢谢。
答案 0 :(得分:0)
您根据较旧版本的Isotope
创建了示例http://isotope.metafizzy.co/v1/demos/combination-filters.html
版本之间存在差异,以及如何组合过滤器:
V1:.red或.tall,你可以传入两个过滤器选择器:.red.tall
V2:.red或.tall,你可以传入两个过滤器选择器:.red,.tall
filters = filters.join(', ');
请查看http://codepen.io/desandro/pen/JGKyrY,我相信您可以自行了解其余部分。
答案 1 :(得分:0)
我自己解决了。我只是添加了
$(".grid-item").addClass("show-me");
filters.push(".show-me");
一开始,
filters.push(".show-me");
复选框功能中的,我用
更改了滑块功能filter: filters
所以每个项目都有&#34; show-me&#34;在开头的类,如果数字不对应,则使用范围滑块删除。
编辑过的JSfiddle是https://jsfiddle.net/21kfqhop/23/