Все работает так, как я хочу, единственная проблема заключается в том, что он не масштабируется, когда вы нажимаете на фильтры (одна кровать / две кровати), он только исчезает. Исходный пример quciksand исчезает и масштабируется между фильтрами
Вот мой пример
http://theoaks.turnpostadmin.com/floor-plans/
Мой код
// jQuery Quicksand project categories filtering
jQuery.noConflict();
jQuery(document).ready(function($){
// Clone applications to get a second collection
var $data = $(".portfolio-content").clone();
//NOTE: Only filter on the main portfolio page, not on the subcategory pages
$('.portfolio-main li').click(function(e) {
$(".filter li").removeClass("active");
// Use the last category class as the category to filter by. This means that multiple categories are not supported (yet)
var filterClass=$(this).attr('class').split(' ').slice(-1)[0];
if (filterClass == 'all-projects') {
var $filteredData = $data.find('.project');
} else {
var $filteredData = $data.find('.project[data-type=' + filterClass + ']');
}
$(".portfolio-content").quicksand($filteredData, {
duration: 750,
easing: 'swing',
attribute: 'data-id', // attribute to recognize same items within source and dest
adjustHeight: 'auto', // 'dynamic' animates height during shuffling (slow), 'auto' adjusts it before or after the animation, false leaves height constant
useScaling: true, // disable it if you're not using scaling effect or want to improve performance
enhancement: function(c) {}, // Visual enhacement (eg. font replacement) function for cloned elements
selector: '> *',
dx: 0,
dy: 0
}, function() {
});
$(this).addClass("active");
return false;
});
});
Вот оригинал
http://razorjack.net/quicksand/