hexo-theme-amane/source/js/gallery.js

8 lines
304 B
JavaScript
Raw Normal View History

document.addEventListener('DOMContentLoaded', function () {
if (typeof ($.fn.lightGallery) === 'function') {
$('.article').lightGallery({ selector: '.gallery-item' });
}
if (typeof ($.fn.justifiedGallery) === 'function') {
$('.justified-gallery').justifiedGallery();
}
});