0.1.1 • Published 3 years ago

ngx-lightbox-gallery v0.1.1

Weekly downloads
15
License
-
Repository
-
Last release
3 years ago

NgxLightboxGallery

Install the directive

npm install ngx-lightbox-gallery

Import

Import NgxLightboxGalleryModule into your app.module or the module of your component (Lazy loading)

import { NgxLightboxGalleryModule } from 'ngx-lightbox-gallery';

@NgModule({ declarations: AppComponent , imports: BrowserModule, NgxLightboxGalleryModule , providers: [], bootstrap: AppComponent })

### Examples
- Without gallery
```html
<img src='image_path' lightbox>
  • Gallery

Add your images in a container with 'lightbox-gallery' class and the directive should collect all imgs with the lightbox attribute and build the gallery

<div class="lightbox-gallery">
    <img src='image_path' lightbox>
    <div class="image-container">
        <img src='image_path' lightbox>
    </div>
    <img src='image_path'> <!-- Image not showed in gallery because it not have lightbox attribute -->
</div>

Optional

Add this to your global css file (app.component.css) to add loop cursor when you hover the lightbox image

img[lightbox] {
    cursor: zoom-in
}
0.1.1

3 years ago

0.1.0

3 years ago

0.0.1

3 years ago