Performant, responsive, easy to use Angular 8+ gallery
Because it gives you the doe eyes! Seriously though, use it if you need:
- Great performance and feel both on mobile and desktop
- Very small size - gallery itself has just 8kB gzipped! It also packs no dependencies
- Easy usage and lots of customizations
- It just works!
npm i -S ngx-doe-gallery@latest
In your ng module
import { GalleryModule } from 'ngx-doe-gallery';
@NgModule({
imports: [ GalleryModule ]
})
...
In your component
import { GalleryImage } from 'ngx-doe-gallery';
@Component({...})
export class AppComponent {
images = [ new GalleryImage('kitten1.jpg') ]
}
In your component template
<doe-gallery [items]="images"></doe-gallery>
In the root of the project, run
npm ci
npm start
npm test