author | ymh <ymh.work@gmail.com> |
Wed, 16 Oct 2019 11:23:38 +0200 | |
changeset 14 | 00ac8f60d73f |
parent 0 | d970ebf37754 |
permissions | -rwxr-xr-x |
// change size of clicked element $container.delegate( '.element', 'click', function(){ $(this).toggleClass('large'); $container.isotope('reLayout'); }); // toggle variable sizes of all elements $('#toggle-sizes').find('a').click(function(){ $container .toggleClass('variable-sizes') .isotope('reLayout'); return false; });