lightgallery.js 1.x is not actively maintained . Please upgrade to version 2

Gallery With Iframe.

HTML structure

<button class="btn btn-success btn-lg mrb50" data-iframe="true" id="open-website" data-src="http://www.w3schools.com/">Open website</button>

<button class="btn btn-success btn-lg mrb50" data-iframe="true" id="google-map" data-src="https://www.google.com/maps/embed?pb=!1m14!1m12!1m3!1d248849.84916296514!2d77.6309395!3d12.9539974!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!5e0!3m2!1sen!2sin!4v1410805729331">Google map</button>

Javascript

// Website
lightGallery(document.getElementById('open-website'), {
    selector: 'this'
});

// Google map
lightGallery(document.getElementById('google-map'), {
    selector: 'this',
    iframeMaxWidth: '80%'
});