Physical Address

304 North Cardinal St.
Dorchester Center, MA 02124

How to use Lightbox in Jekyll

Install with bower

$ bower install ekko-lightbox --save

Basic usage likes bellow,


![Image Title](/assets/img/github-logo.png){: width="400px" }

If you want to give lightbox feature to all images in page, we can it by bellow javascript.

first, give anchor to image in jekyll

[![Title](/assets/img/github-logo.png){: width="400px"}](/assets/img/github-logo.png)

and, make javascript like bellow,

$(function() {
$('img').each(function() {
var that = $(this);
that.closest('a').attr('data-toggle', 'lightbox').attr('data-title', that.attr('alt'));
});

$(document).delegate('*[data-toggle="lightbox"]', 'click', function(e) {
e.preventDefault();
$(this).ekkoLightbox();
});
})

This is sample.

Title{: width=”400px”}

Leave a Reply

Your email address will not be published. Required fields are marked *