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.
61 lines
1.7 KiB
61 lines
1.7 KiB
13 years ago
|
---
|
||
|
title: Removing
|
||
|
layout: default
|
||
|
category: demos
|
||
|
---
|
||
|
|
||
|
<section id="copy">
|
||
|
<p>Removing items filters them out then removes them from the page. Click on a button or the item itself to remove them.</p>
|
||
|
</section>
|
||
|
|
||
|
|
||
|
<section id="options" class="clearfix">
|
||
|
|
||
|
|
||
|
<h3>Remove</h3>
|
||
|
|
||
|
<ul id="removable" class="option-set clearfix">
|
||
|
<li><a href="#remove" data-option-value=".metal">metal</a></li>
|
||
|
<li><a href="#remove" data-option-value=".transition">transition</a></li>
|
||
|
<li><a href="#remove" data-option-value=".post-transition">post-transition</a></li>
|
||
|
<li><a href="#remove" data-option-value=".nonmetal">nonmetal</a></li>
|
||
|
<li><a href="#remove" data-option-value=".alkali, .alkaline-earth">alkali and alkaline-earth</a></li>
|
||
|
<li><a href="#remove" data-option-value=".metalloid">metalloid</a></li>
|
||
|
</ul>
|
||
|
|
||
|
|
||
|
</section> <!-- #options -->
|
||
|
|
||
|
<div id="container" class="variable-sizes clickable clearfix">
|
||
|
{% 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>
|
||
|
$(function(){
|
||
|
|
||
|
var $container = $('#container');
|
||
|
|
||
|
$container.isotope({
|
||
|
itemSelector : '.element'
|
||
|
});
|
||
|
|
||
|
$('#removable a').click(function(){
|
||
|
var selector = $(this).attr('data-option-value');
|
||
|
var $removable = $container.find( selector );
|
||
|
$container.isotope( 'remove', $removable );
|
||
|
});
|
||
|
|
||
|
// remove item if clicked
|
||
|
$container.delegate( '.element', 'click', function(){
|
||
|
$container.isotope( 'remove', $(this) );
|
||
|
});
|
||
|
|
||
|
|
||
|
});
|
||
|
</script>
|
||
|
|