blob: e61dfd9be760e4d08c8fae14654a137c35b7ca5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
$(document).ready(function() {
if (jQuery().imagesLoaded && jQuery().wookmark) {
$('.tiles').imagesLoaded(function() {
$(".tiles img").each(function() {
$(this).height(this.height);
});
// Prepare layout options.
var options = {
container: $('.tiles_container'), // Optional, used for some extra CSS styling
offset: 5, // Optional, the distance between grid items
outerOffset: 10, // Optional, the distance to the containers border
align: 'center',
};
// Get a reference to your grid items.
var handler = $('.tiles li');
// Call the layout function.
handler.wookmark(options);
});
}
});
|