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.
50 lines
1.4 KiB
50 lines
1.4 KiB
--- |
|
title: Adding items |
|
layout: demo |
|
category: demos |
|
related: methods |
|
--- |
|
|
|
<section id="copy"> |
|
<p>The <code>insert</code> method will append, add items to the widget, filter, sort, and then layout all items</p> |
|
<p>The <code>appended</code> method adds items to the widget, and then lays out only the new items.</p> |
|
<p>See docs on <a href="../docs/adding-items.html">adding items</a>.</p> |
|
</section> |
|
|
|
<section id="options"> |
|
<ul class="floated clearfix"> |
|
<li id="insert"><a href="#insert">Insert new elements</a></li> |
|
<li id="append"><a href='#append'>Append new elements</a></li> |
|
</ul> |
|
</section> |
|
|
|
<div id="container" class="clearfix"> |
|
{% for elem_number in site.best_of_order :limit 10 %} |
|
{% assign element = site.elements[elem_number] %} |
|
{% include element-partial.html %} |
|
{% endfor %} |
|
</div> <!-- #container --> |
|
|
|
<script src="../js/jquery-1.4.4.min.js"></script> |
|
<script src="../{{ site.isotope_js }}"></script> |
|
<script src="../js/fake-element.js"></script> |
|
<script> |
|
$(function(){ |
|
|
|
var $container = $('#container'); |
|
|
|
$container.isotope({ |
|
itemSelector : '.element', |
|
getSortData : { |
|
symbol : function( $elem ) { |
|
return $elem.attr('data-symbol'); |
|
} |
|
}, |
|
sortBy : 'symbol' |
|
}); |
|
|
|
{% include add-buttons.js %} |
|
|
|
|
|
}); |
|
</script> |