A very nice feature will be the ability to make a gallery mixing various media type (videos, images, pdf and iframes) like Google drive
var items= [];
items.push({
vidSrc: 'https://yourvideo.mp4',
caption: 'video caption'
});
items.push({
ytSrc: 'z_PeaHVcohg',
});
items.push({
vimeoSrc: '119287310',
});
items.push({
iframeSrc: 'https://youriframe/my-file.pdf',
});
items.push({
audio: 'https://youraudio.mp3',
caption: 'audio caption'
});
items.push({
imgSrc: 'https://yourimage.jpg',
caption: 'image caption'
})
BigPicture({
el: e.target,
gallery: items,
// optionally specify a starting index
position: 2,
})
A very nice feature will be the ability to make a gallery mixing various media type (videos, images, pdf and iframes) like Google drive
Something like: