1.0.10 • Published 3 years ago

ngx-images-gallery v1.0.10

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

ngx-images-galley

ngx-images-galley is my first Angular library for images galleries.

Installation

Use the package manager npm to install ngx-images-galley.

npm install ngx-images-galley --save

Import

import { ImagesGalleryModule} from 'ngx-images-gallery';

@NgModule({
  ...,
  imports: [
    ImagesGalleryModule,
    ...
  ]
})
export class AppModule { }

Usage

<ngx-images-gallery
  [navbarOrientation]="true" // true: horizontal | false: vertical
  [selectedImage]="selectedImage" //deprecated
>
    <ngx-navbar
      [imageWidth]="'64px'"
      [imageHeight]="'64px'"
      [images]="elements" //array of images
      [maxImages]="6"
    ></ngx-navbar>
</ngx-images-gallery>

Interfaces

export interface Image {
    url: string;
    name: string;
}
1.0.10

3 years ago

1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago