krata/_javascript/utils/img-extra.js

47 lines
1.2 KiB
JavaScript
Raw Normal View History

2021-04-21 17:17:34 +02:00
/**
2022-10-25 13:26:44 +02:00
Lazy load images (https://github.com/ApoorvSaxena/lozad.js)
and popup when clicked (https://github.com/dimsemenov/Magnific-Popup)
*/
2021-04-21 17:17:34 +02:00
2022-10-25 13:26:44 +02:00
$(function () {
const IMG_SCOPE = '#main > div.row:first-child > div:first-child';
2021-04-21 17:17:34 +02:00
2022-10-25 13:26:44 +02:00
if ($(`${IMG_SCOPE} img`).length <= 0) {
return;
}
2021-04-21 17:17:34 +02:00
2022-10-25 13:26:44 +02:00
/* lazy loading */
2021-04-21 17:17:34 +02:00
2022-10-25 13:26:44 +02:00
const imgList = document.querySelectorAll(`${IMG_SCOPE} img[data-src]`);
const observer = lozad(imgList);
observer.observe();
2021-04-21 17:17:34 +02:00
2022-10-25 13:26:44 +02:00
/* popup */
2021-04-21 17:17:34 +02:00
2022-10-25 13:26:44 +02:00
$(`${IMG_SCOPE} p > img[data-src], ${IMG_SCOPE} img[data-src].preview-img`).each(
function () {
let nextTag = $(this).next();
const title = nextTag.prop('tagName') === 'EM' ? nextTag.text() : '';
const src = $(this).attr('data-src'); // created by lozad.js
2021-04-21 17:17:34 +02:00
2022-10-25 13:26:44 +02:00
$(this).wrap(`<a href="${src}" title="${title}" class="popup"></a>`);
}
);
2021-04-21 17:17:34 +02:00
2022-10-25 13:26:44 +02:00
$('.popup').magnificPopup({
type: 'image',
closeOnContentClick: true,
showCloseBtn: false,
zoom: {
enabled: true,
duration: 300,
easing: 'ease-in-out'
}
});
2021-04-21 17:17:34 +02:00
2022-10-25 13:26:44 +02:00
/* markup the image links */
2021-06-30 13:08:42 +02:00
2022-10-25 13:26:44 +02:00
$(`${IMG_SCOPE} a`).has('img').addClass('img-link');
2021-04-21 17:17:34 +02:00
});