我已经建立了一个同位素网格布局来显示项目,它也使用同位素过滤来更快地对项目进行排序。
过滤工作正常,直到您尝试将下拉菜单恢复到默认位置“所有服务”& “所有部门”。然后隐藏所有项目,这些项目都应该显示出来。
http://www.ellyon.co.uk/wp/projects/
编辑:可能是Jquery冲突吗?我添加了我的functions.php,因为我不是100%肯定我已正确添加脚本。的functions.php
function add_isotope() {
wp_register_script( 'isotope-init', get_template_directory_uri().'/js/isotope.js', array('jquery', 'isotope'), true );
wp_register_style( 'isotope-css', get_stylesheet_directory_uri() . '/styles/project.css' );
wp_enqueue_script('isotope-init');
wp_enqueue_style('isotope-css');
}
add_action( 'wp_enqueue_scripts', 'add_isotope' );
function modify_jquery() {
if ( !is_admin() ) {
wp_deregister_script( 'jquery' );
wp_register_script( 'jquery', 'https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js', false, '3.2.1' );
wp_enqueue_script( 'jquery' );
}
}
add_action( 'init', 'modify_jquery' );
Isotope.js
// Grid
var $grid = $('.grid').isotope({
itemSelector: '.grid-item',
layoutMode: 'packery',
columnWidth: '.grid-sizer',
packery: {
gutter: '.gutter-sizer'
}
});
// state variable
var $expandedItem;
// expand when clicked
$grid.on( 'click', '.grid-item', function( event ) {
var isExpanded = $expandedItem && event.currentTarget == $expandedItem[0];
if ( isExpanded ) {
// exit if already expanded
return;
}
// un-expand previous
if ( $expandedItem ) {
$expandedItem.removeClass('gigante');
}
// set new & expand
$expandedItem = $( event.currentTarget ).addClass('gigante');
$grid.isotope('layout');
});
$grid.on( 'click', '.close-button button', function( event ) {
$expandedItem.removeClass('gigante');
// reset variable
$expandedItem = null;
$grid.isotope('layout');
event.stopPropagation();
});
// Select Filters
$(function() {
var $container = $('.grid'),
$select = $('div#filterGroup select');
filters = {};
$container.isotope({
itemSelector: '.grid-item'
});
$select.change(function() {
var $this = $(this);
var $optionSet = $this;
var group = $optionSet.attr('data-filter-group');
filters[group] = $this.find('option:selected').attr('data-filter-value');
var isoFilters = [];
for (var prop in filters) {
isoFilters.push(filters[prop])
}
var selector = isoFilters.join('');
$container.isotope({
filter: selector
});
return false;
});
$grid.imagesLoaded().progress( function() {
$grid.isotope('layout');
});
});
答案 0 :(得分:1)
Asterisk *
是一种特殊情况,需要与其他过滤器值进行不同的处理,以便:
必须有多种方法来实施这些规则。这是一个:
// Select Filters
$(function() {
var $grid = $('.grid');
var $selects = $('div#filterGroup select').change(function() {
var selector = $selects.get().map(function(el) { // map the select elements ...
return $(el).data('filter-value'); // ... to an array of filter-values
}).filter(function(val) {
return val !== '*' // filter out all '*' values
}).join('') || '*'; // if joined array is empty-string, then default to a single '*'
$grid.isotope({
'filter': selector
});
return false;
});
...
});
请注意,原始代码的filters
对象只会增加不必要的复杂性。 DOM非常善于表示自己的状态,因此不是在javascript中维护持久映射,而是每次对其中任何一个进行更改时,将两个选择元素直接映射到Array都会更简单。
如果HTML构造如下,代码会略有简化:
<select class="filter option-set" data-filter-group="services">
<option value="">All Services</option>
<option value='.cladding'>Cladding</option>
...
</select>
<select class="filter option-set" data-filter-group="sectors">
<option value="">All Sectors</option>
<option value='.commerical'>Commerical</option>
...
</select>
然后,.filter()
星号的需要会消失,留下:
$(function() {
var $grid = $('.grid');
var $selects = $('div#filterGroup select').change(function() {
var selector = $selects.get().map(function(el) { // map the select elements ...
return $(el).val(); // ... to an array of values
}).join('') || '*'; // if joined array is empty-string, then default to a single '*'
$grid.isotope({
'filter': selector
});
return false;
});
...
});