Gallery
Installation
npm install ontimize-web-ngx-gallery --save
Usage
Add the library theming
In your application ‘app.scss’ file you should add the library theme.
...
@import 'node_modules/ontimize-web-ngx-gallery/o-gallery-theme.scss';
@include o-gallery-theme($theme);
...
Import in an application module
Import the Ontimize Web gallery module in the app module where you want to use it.
import { OGalleryModule } from 'ontimize-web-ngx-gallery';
@NgModule({
imports: [
OGalleryModule
],
declarations: ...
providers: ...
})
export class ExampleModule { }