A simple Image Slider module for Angular Application {The library is under development}
- 
Features:
 
- Image preview option - (Image will be displayed in the Dialog box)
 - It shows progress bar until the image has not been loaded properly
 
npm install ng-pmp-image-slider
...
import { ImageSliderModule } from 'ng-pmp-image-slider';
@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    BrowserAnimationsModule,
    ImageSliderModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }
<pmp-image-slider [images]="imageList"></pmp-image-slider>
import { Component } from '@angular/core';
@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})
export class AppComponent {
  imageList: string[] = ['https://images.com/img1.jpg','https://images.com/img2.jpg'] // etc
}
autoslide:
To enable auto slide images based on flag, defualt value false.
duration:
Takes number value in milisecond, which is configurable, defualt value 5000 ms (5 seconds).