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.
10 lines
281 B
10 lines
281 B
14 years ago
|
|
||
|
// hacky way of adding random size classes
|
||
|
$container.find('.element').each(function(){
|
||
|
if ( Math.random() > 0.6 ) {
|
||
|
$(this).addClass('width2');
|
||
|
}
|
||
|
if ( Math.random() > 0.6 ) {
|
||
|
$(this).addClass('height2');
|
||
|
}
|
||
|
});
|