1

我在一个项目中使用jQuery Isotope 。

我可以将过滤器值从不同页面上的 href 链接传递给它吗?因此,当我登陆带有同位素的页面时,它会根据 a href 过滤布局。

4

1 回答 1

1

是的。您可以使用 Isotope 的哈希历史插件,它使用jQuery BBQ

这个例子只是来自 Isotope 文档上的哈希历史页面源的 copypasta。

$(window).bind( 'hashchange', function( event ){
    // get options object from hash
    var hashOptions = window.location.hash ? $.deparam.fragment( window.location.hash, true ) : {},
        // do not animate first call
        aniEngine = hashChanged ? 'best-available' : 'none',
        // apply defaults where no option was specified
        options = $.extend( {}, defaultOptions, hashOptions, { animationEngine: aniEngine } );
// apply options from hash
$container.isotope( options );
// save options
isotopeOptions = hashOptions;

// if option link was not clicked
// then we'll need to update selected links
if ( !isOptionLinkClicked ) {
  // iterate over options
  var hrefObj, hrefValue, $selectedLink;
  for ( var key in options ) {
    hrefObj = {};
    hrefObj[ key ] = options[ key ];
    // convert object into parameter string
    // i.e. { filter: '.inner-transition' } -> 'filter=.inner-transition'
    hrefValue = $.param( hrefObj );
    // get matching link
    $selectedLink = $optionSets.find('a[href="#' + hrefValue + '"]');
    changeSelectedLink( $selectedLink );
  }
}

isOptionLinkClicked = false;
hashChanged = true;
})

    // trigger hashchange to capture any hash data on init
    .trigger('hashchange');

});
于 2012-04-18T01:45:46.200 回答