mirror of https://github.com/metafizzy/isotope
Filter & sort magical layouts
http://isotope.metafizzy.co
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.5 KiB
60 lines
1.5 KiB
--- |
|
title: Sorting |
|
layout: demo |
|
category: demos |
|
related: sorting |
|
--- |
|
|
|
<section id="copy"> |
|
<p>Sort item elements based on any data you can extract from them.</p> |
|
<p>See <a href="../docs/sorting.html">docs on Sorting</a>.</p> |
|
</section> |
|
|
|
<section id="options" class="clearfix"> |
|
|
|
{% include sort-buttons.html %} |
|
|
|
</section> <!-- #options --> |
|
|
|
<div id="container" class="clearfix"> |
|
{% for element in site.elements_best_of %} |
|
{% include element-partial.html %} |
|
{% endfor %} |
|
</div> <!-- #container --> |
|
|
|
<script src="../js/jquery-1.4.4.min.js"></script> |
|
<script src="../jquery.isotope.js"></script> |
|
<script> |
|
$(function(){ |
|
|
|
var $container = $('#container'); |
|
|
|
|
|
$container.isotope({ |
|
itemSelector : '.element', |
|
animationEngine : $.browser.opera ? 'jquery' : 'best-available', |
|
getSortData : { |
|
symbol : function( $elem ) { |
|
return $elem.attr('data-symbol'); |
|
}, |
|
category : function( $elem ) { |
|
return $elem.attr('data-category'); |
|
}, |
|
number : function( $elem ) { |
|
return parseInt( $elem.find('.number').text(), 10 ); |
|
}, |
|
weight : function( $elem ) { |
|
return parseInt( $elem.find('.weight').text().replace( /[\(\)]/g, ''), 10 ); |
|
}, |
|
name : function ( $elem ) { |
|
return $elem.find('.name').text(); |
|
} |
|
} |
|
}); |
|
|
|
{% include sort-buttons.js %} |
|
|
|
{% include option-buttons.js %} |
|
|
|
}); |
|
</script>
|
|
|