jellyfin-web/dashboard-ui/thirdparty/jquery.unveil-custom.js

169 lines
4.3 KiB
JavaScript
Raw Normal View History

2015-11-28 17:23:48 -07:00
/**
2015-10-28 10:09:55 -07:00
* 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
2015-06-28 07:45:21 -07:00
*/
2015-11-28 17:23:48 -07:00
(function () {
2015-10-28 10:09:55 -07:00
/**
* Copyright 2012, Digital Fusion
* Licensed under the MIT license.
* http://teamdf.com/jquery-plugins/license/
*
* @author Sam Sehnert
* @desc A small plugin that checks whether elements are within
* the user visible viewport of a web browser.
* only accounts for vertical position, not horizontal.
*/
var thresholdX = Math.max(screen.availWidth);
var thresholdY = Math.max(screen.availHeight);
2015-12-02 13:50:25 -07:00
var wheelEvent = (document.implementation.hasFeature('Event.wheel', '3.0') ? 'wheel' : 'mousewheel');
2015-10-28 10:09:55 -07:00
2015-11-28 17:23:48 -07:00
function visibleInViewport(elem, partial) {
2015-11-28 17:23:48 -07:00
thresholdX = thresholdX || 0;
thresholdY = thresholdY || 0;
var vpWidth = window.innerWidth,
vpHeight = window.innerHeight;
// Use this native browser method, if available.
var rec = elem.getBoundingClientRect(),
tViz = rec.top >= 0 && rec.top < vpHeight + thresholdY,
bViz = rec.bottom > 0 && rec.bottom <= vpHeight + thresholdY,
lViz = rec.left >= 0 && rec.left < vpWidth + thresholdX,
rViz = rec.right > 0 && rec.right <= vpWidth + thresholdX,
vVisible = partial ? tViz || bViz : tViz && bViz,
hVisible = partial ? lViz || rViz : lViz && rViz;
return vVisible && hVisible;
2015-10-28 10:09:55 -07:00
}
2015-10-28 10:09:55 -07:00
var unveilId = 0;
2015-10-28 10:09:55 -07:00
function isVisible(elem) {
2015-11-28 17:23:48 -07:00
return visibleInViewport(elem, true);
2015-10-28 10:09:55 -07:00
}
2015-10-28 10:09:55 -07:00
function fillImage(elem) {
var source = elem.getAttribute('data-src');
if (source) {
ImageStore.setImageInto(elem, source);
elem.setAttribute("data-src", '');
}
}
2015-12-02 13:50:25 -07:00
function unveilElements(elems) {
2015-10-28 10:09:55 -07:00
if (!elems.length) {
return;
}
2015-10-28 10:09:55 -07:00
var images = elems;
2015-10-28 10:09:55 -07:00
unveilId++;
2015-10-28 10:09:55 -07:00
function unveil() {
2015-10-28 10:09:55 -07:00
var remaining = [];
2015-10-28 10:09:55 -07:00
for (var i = 0, length = images.length; i < length; i++) {
var img = images[i];
if (isVisible(img)) {
fillImage(img);
} else {
remaining.push(img);
}
}
2015-10-28 10:09:55 -07:00
images = remaining;
2015-10-28 10:09:55 -07:00
if (!images.length) {
2015-11-27 12:54:01 -07:00
document.removeEventListener('scroll', unveil);
2015-12-02 13:50:25 -07:00
document.removeEventListener(wheelEvent, unveil);
2015-11-27 12:54:01 -07:00
window.removeEventListener('resize', unveil);
}
}
2015-12-02 13:50:25 -07:00
document.addEventListener('scroll', unveil, true);
document.addEventListener(wheelEvent, unveil, true);
window.addEventListener('resize', unveil, true);
2015-05-09 21:29:04 -07:00
2015-10-28 10:09:55 -07:00
unveil();
}
2015-05-11 09:32:15 -07:00
2015-10-28 10:09:55 -07:00
function fillImages(elems) {
2015-05-11 09:32:15 -07:00
2015-10-28 10:09:55 -07:00
for (var i = 0, length = elems.length; i < length; i++) {
var elem = elems[0];
var source = elem.getAttribute('data-src');
if (source) {
ImageStore.setImageInto(elem, source);
elem.setAttribute("data-src", '');
}
2015-05-11 09:32:15 -07:00
}
2015-10-28 10:09:55 -07:00
}
2015-10-12 12:09:56 -07:00
2015-10-28 10:09:55 -07:00
function lazyChildren(elem) {
2015-10-28 10:09:55 -07:00
unveilElements(elem.getElementsByClassName('lazy'), elem);
}
2015-10-28 10:09:55 -07:00
function lazyImage(elem, url) {
2015-10-28 10:09:55 -07:00
elem.setAttribute('data-src', url);
fillImages([elem]);
}
2015-10-28 10:09:55 -07:00
window.ImageLoader = {
fillImages: fillImages,
lazyImage: lazyImage,
lazyChildren: lazyChildren
};
2015-11-28 17:23:48 -07:00
})();
2015-10-28 10:09:55 -07:00
(function () {
2015-10-28 10:09:55 -07:00
function setImageIntoElement(elem, url) {
2015-10-28 10:09:55 -07:00
if (elem.tagName !== "IMG") {
2015-10-28 10:09:55 -07:00
elem.style.backgroundImage = "url('" + url + "')";
2015-10-28 10:09:55 -07:00
} else {
elem.setAttribute("src", url);
}
2015-11-29 23:19:31 -07:00
if (browserInfo.animate && !browserInfo.mobile) {
2015-10-28 10:09:55 -07:00
if (!elem.classList.contains('noFade')) {
fadeIn(elem, 1);
}
2015-10-28 10:09:55 -07:00
}
}
2015-10-28 10:09:55 -07:00
function fadeIn(elem, iterations) {
2015-10-12 12:09:56 -07:00
2015-10-28 10:09:55 -07:00
var keyframes = [
{ opacity: '0', offset: 0 },
{ opacity: '1', offset: 1 }];
var timing = { duration: 200, iterations: iterations };
return elem.animate(keyframes, timing);
}
2015-05-11 09:32:15 -07:00
2015-10-28 10:09:55 -07:00
function simpleImageStore() {
2015-05-09 21:29:04 -07:00
2015-10-28 10:09:55 -07:00
var self = this;
2015-05-09 21:29:04 -07:00
2015-10-28 10:09:55 -07:00
self.setImageInto = setImageIntoElement;
}
2015-05-09 21:29:04 -07:00
2015-10-28 10:09:55 -07:00
window.ImageStore = new simpleImageStore();
2015-05-12 21:55:19 -07:00
2015-10-28 10:09:55 -07:00
})();