forked from ressio/lazy-load-xt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjquery.lazyloadxt.simple.js
187 lines (152 loc) · 4.87 KB
/
jquery.lazyloadxt.simple.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
/*jslint browser:true, plusplus:true, vars:true */
/*jshint browser:true, jquery:true */
/* SIMPLE VERSION IS NO LONGER SUPPORTED. USE jquery.lazyloadxt.js INSTEAD. */
(function ($, window, document) {
'use strict';
// options
var options = {
selector: 'img',
srcAttr: 'data-src',
classNojs: 'lazy',
edgeX: 0,
edgeY: 0,
throttle: 99,
visibleOnly: true,
loadEvent: 'pageshow', // check AJAX-loaded content in jQueryMobile
updateEvent: 'load orientationchange resize scroll' // page-modified events
},
$window = $(window),
elements = [],
viewportTop,
viewportBottom,
viewportLeft,
viewportRight,
topLazy = 0,
/*
waitingMode=0 : no setTimeout
waitingMode=1 : setTimeout, no deferred events
waitingMode=2 : setTimeout, deferred events
*/
waitingMode = 0;
$.lazyLoadXT = $.extend(options, $.lazyLoadXT);
/**
* Add new elements to lazy-load list:
* $(elements).lazyLoadXT() or $(window).lazyLoadXT()
*/
$.fn.lazyLoadXT = function () {
this.each(function () {
if (this === window) {
$(options.selector).lazyLoadXT();
return;
}
var $el = $(this);
// prevent duplicates
if ($el.data('lazied')) {
return;
}
$el
.data('lazied', 1)
.removeClass(options.classNojs);
elements.unshift($el); // push it in the first position as we iterate elements in reverse order
});
// queue next check as images may be resized after loading of actual file
queueCheckLazyElements();
return this;
};
/**
* Save visible viewport boundary to viewportXXX variables
*/
function calcViewport() {
var scrollTop = $window.scrollTop(),
scrollLeft = window.pageXOffset || 0,
edgeX = options.edgeX,
edgeY = options.edgeY;
viewportTop = scrollTop - edgeY;
viewportBottom = scrollTop + (window.innerHeight || $window.height()) + edgeY;
viewportLeft = scrollLeft - edgeX;
viewportRight = scrollLeft + (window.innerWidth || $window.width()) + edgeX;
}
/**
* Load visible elements
*/
function checkLazyElements() {
if (!elements.length) {
return;
}
topLazy = Infinity;
calcViewport();
var i = elements.length - 1,
srcAttr = options.srcAttr;
for (; i >= 0; i--) {
var $el = elements[i],
el = $el[0];
// remove items that are not in DOM
if (!$.contains(document.documentElement, el)) {
elements.splice(i, 1);
} else if (!options.visibleOnly || el.offsetWidth > 0 || el.offsetHeight > 0) {
var offset = $el.offset(),
elTop = offset.top,
elLeft = offset.left;
if ((elTop < viewportBottom) && (elTop + $el.height() > viewportTop) &&
(elLeft < viewportRight) && (elLeft + $el.width() > viewportLeft)) {
var src = $el.attr(srcAttr);
if (src) {
el.src = src;
}
elements.splice(i, 1);
} else {
if (elTop < topLazy) {
topLazy = elTop;
}
}
}
}
}
/**
* Run check of lazy elements after timeout
*/
function timeoutLazyElements() {
if (waitingMode > 1) {
waitingMode = 1;
checkLazyElements();
setTimeout(timeoutLazyElements, options.throttle);
} else {
waitingMode = 0;
}
}
/**
* Queue check of lazy elements because of event e
* @param {Event} [e]
*/
function queueCheckLazyElements(e) {
if (!elements.length) {
return;
}
// fast check for scroll event without new visible elements
if (e && e.type === 'scroll') {
calcViewport();
if (topLazy >= viewportBottom) {
return;
}
}
if (!waitingMode) {
setTimeout(timeoutLazyElements, 0);
}
waitingMode = 2;
}
/**
* Initialize list of hidden elements
*/
function initLazyElements() {
$(window).lazyLoadXT();
}
/**
* Initialization
*/
$(document).ready(function () {
$window
.on(options.loadEvent, initLazyElements)
.on(options.updateEvent, queueCheckLazyElements);
initLazyElements(); // standard initialization
});
})(window.jQuery || window.Zepto, window, document);