forked from pasine/unveil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjquery.unveil.js
75 lines (57 loc) · 1.6 KB
/
jquery.unveil.js
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/**
* jQuery Unveil
* A very lightweight jQuery plugin to lazy load images
* http://luis-almeida.github.com/unveil
*
* Licensed under the MIT license.
* Copyright 2013 Luís Almeida
* https://github.com/luis-almeida
*/
;(function($) {
$.fn.unveil = function(threshold, options) {
var defaults = {
horizontal: false
};
var options = $.extend({}, defaults, options);
var $w = $(window),
th = threshold || 0,
retina = window.devicePixelRatio > 1,
attrib = retina? "data-src-retina" : "data-src",
images = this,
loaded,
inview,
source;
this.one("unveil", function() {
source = this.getAttribute(attrib);
source = source || this.getAttribute("data-src");
if (source) this.setAttribute("src", source);
});
function unveil() {
var counter = 0;
inview = images.filter(function() {
var $e = $(this),
wt = $w.scrollTop(),
wb = wt + $w.height(),
et = $e.offset().top,
eb = et + $e.height(),
inViewPort = (eb >= wt - th && et <= wb + th)
;
if (options.horizontal) {
var wl = $w.scrollLeft(),
ww = wl + $w.width(),
ew = $e.offset().left
;
inViewPort = (inViewPort && ww >= ew - th);
};
counter++;
return inViewPort;
});
loaded = inview.trigger("unveil");
images = images.not(loaded);
}
$w.scroll(unveil);
$w.resize(unveil);
unveil();
return this;
};
})(jQuery);