Root Zanli
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
o5t6x7pgljbm
/
public_html
/
tuitioncoin.org
/
assets
/
js
/
src
/
components
/
Filename :
gallery.js
back
Copy
/** * Gallery like styled lightbox component for presenting various types of media * @requires https://github.com/sachinchoolur/lightGallery */ const gallery = (() => { let gallery = document.querySelectorAll('.gallery'); if (gallery.length) { for (let i = 0; i < gallery.length; i++) { const thumbnails = gallery[i].dataset.thumbnails ? true : false, video = gallery[i].dataset.video ? true : false, defaultPlugins = [lgZoom, lgFullscreen], videoPlugin = video ? [lgVideo] : [], thumbnailPlugin = thumbnails ? [lgThumbnail] : [], plugins = [...defaultPlugins, ...videoPlugin, ...thumbnailPlugin] lightGallery(gallery[i], { selector: '.gallery-item', plugins: plugins, licenseKey: 'D4194FDD-48924833-A54AECA3-D6F8E646', download: false, autoplayVideoOnSlide: true, zoomFromOrigin: false, youtubePlayerParams: { modestbranding: 1, showinfo: 0, rel: 0 }, vimeoPlayerParams: { byline: 0, portrait: 0, color: '6366f1' } }); } } })(); export default gallery;