A simple angular image lightbox.
Uses ComponentFactoryResolver and injects component directly into DOM body
npm install ng-sppro-lightbox
//import lightbox service into componennt
import { LightboxService } from "ng-sppro-lightbox";
//Inject service
constructor(
private _lightboxService: LightboxService
) {...}
//Open lightbox
this._lightboxService.open("https://images.pexels.com/photos/1987042/pexels-photo-1987042.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260");