mfg92 / hugo-shortcode-gallery

A theme component with a gallery shortcode for the static site generator hugo.
MIT License
341 stars 65 forks source link

Captions on Thumbnails ? #75

Closed Phil89a closed 4 months ago

Phil89a commented 4 months ago

Just managed to get this working with Blowfish theme and it is looking great.

Is it possible to include captions on the gallery thumbnails using Justified Gallery's Caption option - see https://miromannino.github.io/Justified-Gallery/captions/ ?

Thanks

mfg92 commented 4 months ago

I have made a small change that will allow you to configure the captions.

To enable the caption, add the parameter justifiedGalleryParameters with the value "captions: true":

{{< gallery
    justifiedGalleryParameters="captions: true"
>}}

Or if you want to configure the captions:

{{< gallery
    justifiedGalleryParameters="captions: true, captionSettings: {animationDuration: 500, visibleOpacity: 0.9, nonVisibleOpacity: 0.0}, cssAnimation: false"
>}}

With this mechanism, one can set all options that Justified Gallery supports.

There is no release with this change yet, it is only in the main branch. Please test it and give me feedback.

Phil89a commented 4 months ago

Magic thanks - will try it out and let you know

Phil89a commented 4 months ago

Working perfectly. Many thanks

mfg92 commented 4 months ago

Good to hear that, ty for the feedback!