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.
69 lines
1.7 KiB
69 lines
1.7 KiB
14 years ago
|
---
|
||
13 years ago
|
title: item position data
|
||
14 years ago
|
layout: default
|
||
14 years ago
|
category: tests
|
||
|
---
|
||
|
|
||
|
<section id="copy">
|
||
14 years ago
|
<p><code>itemPositionDataEnabled</code> option is enabled. </p>
|
||
14 years ago
|
</section>
|
||
|
|
||
|
<section id="options" class="clearfix">
|
||
|
|
||
|
{% include sort-buttons.html %}
|
||
|
|
||
|
<h3>Etc</h3>
|
||
|
|
||
14 years ago
|
<ul id="etc" class="clearfix">
|
||
14 years ago
|
|
||
|
<li id="toggle-sizes"><a href="#toggle-sizes">Toggle variable sizes</a></li>
|
||
|
</ul>
|
||
|
</section> <!-- #options -->
|
||
|
|
||
14 years ago
|
<div id="container" class="clickable clearfix">
|
||
14 years ago
|
{% for element in site.elements limit:40 %}
|
||
|
{% include element-partial.html %}
|
||
|
{% endfor %}
|
||
|
</div> <!-- #container -->
|
||
|
|
||
|
<script src="../{{ site.jquery_js }}"></script>
|
||
|
<script src="../{{ site.isotope_js }}"></script>
|
||
|
<script>
|
||
14 years ago
|
|
||
14 years ago
|
$(function(){
|
||
|
|
||
|
var $container = $('#container');
|
||
|
|
||
14 years ago
|
{% include random-sizes.js %}
|
||
|
|
||
14 years ago
|
$container.isotope({
|
||
|
itemSelector: '.element',
|
||
|
itemPositionDataEnabled: true,
|
||
|
masonry: {
|
||
|
columnWidth : 120
|
||
|
},
|
||
|
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 parseFloat( $elem.find('.weight').text().replace( /[\(\)]/g, '') );
|
||
|
},
|
||
|
name : function ( $elem ) {
|
||
|
return $elem.find('.name').text();
|
||
|
}
|
||
|
}
|
||
|
});
|
||
14 years ago
|
|
||
|
{% include option-set-buttons.js %}
|
||
|
|
||
|
{% include change-sizes.js %}
|
||
14 years ago
|
|
||
|
});
|
||
|
</script>
|