gpt4 book ai didi

php - 同位素过滤-重置为起始位置时出现的问题

转载 作者:行者123 更新时间:2023-12-03 08:23:29 25 4
gpt4 key购买 nike

我建立了一个同位素网格布局来显示项目,该布局还使用同位素过滤来更快地对项目进行排序。

在您尝试将下拉列表放回其默认位置“所有服务”和“所有部门”之前,过滤工作正常。然后,所有项目都将被隐藏,而所有它们都应显示出来。

http://www.ellyon.co.uk/wp/projects/

编辑:这可能是一个Jquery冲突吗?我已经将我的functions.php添加为im,而不是100%确定ive是否正确添加了脚本。

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');
});

});

最佳答案

星号*是一种特殊情况,需要与其他过滤器值区别对待,例如:

  • 如果选择一个或多个非星号值,则应忽略所有星号
  • 如果未选择任何非星号值,则默认为单个星号(显示全部)。

  • 必须采用多种方法来实现这些规则。这是一个:
    // 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中维护持久映射相比,每次将两个select元素中的任何一个更改都直接将它们直接映射到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;
    });
    ...
    });

    关于php - 同位素过滤-重置为起始位置时出现的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50451048/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com