summaryrefslogtreecommitdiffstats
path: root/static/functions/top10.js
blob: 56d220fbb0989c6a0c488acddf66ba7e0c36f506 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
$(document).ready(function() {
	if (jQuery().imagesLoaded && jQuery().wookmark) {
		$('.tiles').imagesLoaded(function() {
			$(".tiles img").each(function() {
				var size = getResized(this.width, this.height, 252, 400)
				$(this).width(size[0]);
				$(this).height(size[1]);
			});

			// 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);
		});
	}

	function getResized(srcWidth, srcHeight, maxWidth, maxHeight) {
		var ratio = [maxWidth / srcWidth, maxHeight / srcHeight ];
		ratio = Math.min(ratio[0], ratio[1]);

		return {
			width: srcWidth * ratio,
			height: srcHeight * ratio
		};
	 }
});