heimrichhannot / contao-lightbox-gallery-bundle
This bundle offers a contao extension for lightbox-gallery based on mcstudios/glightbox
Installs: 1 950
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 5
Forks: 0
Open Issues: 0
Type:contao-bundle
Requires
- php: ^7.4 || ^8.0
- contao/core-bundle: ^4.9
- heimrichhannot-contao-components/glightbox-gallery: ^1.0
- heimrichhannot/contao-encore-contracts: ^1.0
- symfony/polyfill-php80: ^1.25
- symfony/service-contracts: ^1.0 || ^2.0 || ^3.0
Suggests
- heimrichhannot/contao-encore-bundle: Provide webpack encore asset support.
README
This bundle offers a contao extension for lightbox-gallery based on mcstudios/glightbox.
Install
Install with composer or contao manger:
composer require heimrichhannot/contao-lightbox-gallery-bundle
Usage
This bundle works out-of-the-box with contao galleries.
Encore bundle
If you're using this bundle with encore bundle, assets are blocked by default. For content elements where fullsize option is checked, the assets are added automatically.
Extended usage
To add images to an gallery define an unique data lightbox id for the elements. Each a tag must have the same data lightbox id to be in the same gallery.
To add an title to the gallery simply add a title attribute to the a tag. If you want to add a caption add an figcaption element after the a tag.
<div class="gallery"> <a href="img/2-1.jpg" data-caption="Image caption" data-lightbox="193910782" title="Title"> <img src="img/thumbnails/2-1.jpg" alt="First image"> </a> <figcaption class="caption">Caption</figcaption> <a href="img/2-2.jpg" data-lightbox="193910782"> <img src="img/thumbnails/2-2.jpg" alt="Second image"> </a> ... </div>