0.0.5 • Published 3 years ago

ngx-gallery-viewer v0.0.5

Weekly downloads
25
License
MIT
Repository
github
Last release
3 years ago

Guide

Simple gallery viewer for angular.

screenshot

Usage

// app.module
import { ViewerModule } from 'ngx-gallery-viewer';
@NgModule({
  imports: [
    ViewerModule
  ]
})

// app.component
import { NgxGalleryViewerService } from 'ngx-gallery-viewer';

constructor(gallery: NgxGalleryViewerService)
const images = [
    { base64: '...' },
    { base64: '...' },
    { base64: '...' }
]

gallery.open({
    files: images,
    index: 0
});
0.0.5

3 years ago

0.0.4

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago