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.
17 lines
323 B
17 lines
323 B
11 years ago
|
test( 'gutter', function() {
|
||
|
|
||
|
var container = document.querySelector('#gutter');
|
||
|
var msnry = new Masonry( container, {
|
||
|
columnWidth: 60,
|
||
|
gutter: 20
|
||
|
});
|
||
|
|
||
|
checkItemPositions( msnry, {
|
||
|
0: { left: 0, top: 0 },
|
||
|
1: { left: 80, top: 0 },
|
||
|
2: { left: 160, top: 0 },
|
||
|
3: { left: 0, top: 30 }
|
||
|
});
|
||
|
|
||
|
});
|