私はjQueryQuicksandプラグインを使用しています-http ://jsfiddle.net/se9pY/
しかし、私rawDestElement is undefined
はFireBugに入ります...
$(function() {
$("#filter a").click(function() {
var $this = $(this),
$oriColl = $("#boxes"),
$clonedColl = $oriColl.clone(),
filtered = ($this.text() == "all") ? $("#boxes li") : $("#boxes li[data-type=" + $this.text() + "]");
$("#boxes").quicksand(filtered, { duration: 800, easing: 'easeInOutQuad' });
});
});
どうしたの?