mirror of https://github.com/metafizzy/isotope
David DeSandro
14 years ago
7 changed files with 157 additions and 78 deletions
@ -0,0 +1,24 @@ |
|||||||
|
<h3>Sort</h3> |
||||||
|
|
||||||
|
<ul id="sort" class="sort option-set"> |
||||||
|
<li> |
||||||
|
<ul class="sort asc option-set floated clearfix"> |
||||||
|
<li><a href="#original-order" class="selected">original-order (asc)</a></li> |
||||||
|
<li><a href="#name">name (asc)</a></li> |
||||||
|
<li><a href="#symbol">symbol (asc)</a></li> |
||||||
|
<li><a href="#number">number (asc)</a></li> |
||||||
|
<li><a href="#weight">weight (asc)</a></li> |
||||||
|
<li><a href="#category">category (asc)</a></li> |
||||||
|
</ul> |
||||||
|
</li> |
||||||
|
<li> |
||||||
|
<ul class="sort desc option-set floated clearfix"> |
||||||
|
<li><a href="#original-order">original-order (desc)</a></li> |
||||||
|
<li><a href="#name">name (desc)</a></li> |
||||||
|
<li><a href="#symbol">symbol (desc)</a></li> |
||||||
|
<li><a href="#number">number (desc)</a></li> |
||||||
|
<li><a href="#weight">weight (desc)</a></li> |
||||||
|
<li><a href="#category">category (desc)</a></li> |
||||||
|
</ul> |
||||||
|
</li> |
||||||
|
</ul> |
@ -0,0 +1,16 @@ |
|||||||
|
|
||||||
|
// sorting
|
||||||
|
$('#sort a').click(function(){ |
||||||
|
// get href attribute, minus the #
|
||||||
|
var $this = $(this), |
||||||
|
sortName = $this.attr('href').slice(1), |
||||||
|
asc = $this.parents('.sort').hasClass('asc'); |
||||||
|
// var sortTest = 'sort ' + sortName + ' ' + direction;
|
||||||
|
// console.time( sortTest );
|
||||||
|
$demo.isotope({
|
||||||
|
sortBy : sortName, |
||||||
|
sortAscending : asc |
||||||
|
}); |
||||||
|
// console.timeEnd( sortTest );
|
||||||
|
return false; |
||||||
|
}); |
@ -0,0 +1,78 @@ |
|||||||
|
--- |
||||||
|
layout: nil |
||||||
|
title: Sorting |
||||||
|
category: demos |
||||||
|
--- |
||||||
|
<!doctype html> |
||||||
|
<html lang="en"> |
||||||
|
<head> |
||||||
|
<meta charset="utf-8" /> |
||||||
|
<title>{{ page.title }}</title> |
||||||
|
|
||||||
|
<link rel="stylesheet" href="../css/style.css" type="text/css" media="screen" /> |
||||||
|
|
||||||
|
</head> |
||||||
|
<body> |
||||||
|
|
||||||
|
<h1>{{ page.title }}</h1> |
||||||
|
|
||||||
|
<section id="copy"> |
||||||
|
|
||||||
|
|
||||||
|
</section> |
||||||
|
|
||||||
|
<section id="options" class="clearfix"> |
||||||
|
|
||||||
|
{% include sort-buttons.html %} |
||||||
|
|
||||||
|
</section> <!-- #options --> |
||||||
|
|
||||||
|
<div id="demo" class="iso-container variable-sizes"> |
||||||
|
{% for element in site.elements_best_of %} |
||||||
|
{% include element-partial.html %} |
||||||
|
{% endfor %} |
||||||
|
</div> <!-- #demo --> |
||||||
|
|
||||||
|
<script src="../js/jquery-1.4.4.min.js"></script> |
||||||
|
<script src="../src/mini-modernizr.js"></script> |
||||||
|
<script src="../src/jquery.opto-transform.js"></script> |
||||||
|
<script src="../src/jquery.smartresize.js"></script> |
||||||
|
<script src="../src/jquery.isotope.js"></script> |
||||||
|
<script src="../src/jquery.ui.widget.js"></script> |
||||||
|
<script> |
||||||
|
$(function(){ |
||||||
|
|
||||||
|
var $demo = $('#demo'); |
||||||
|
|
||||||
|
|
||||||
|
$demo.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> |
||||||
|
|
||||||
|
</body> |
||||||
|
</html> |
Loading…
Reference in new issue