Press "Enter" to skip to content

A Simple, Responsive Slideshow for Angular 4+

ng-simple-slideshow is a simple and elegant slideshow slider element for the Angular 4+ app.

angular material image carousel slider, angular material image slider, automatic image slider in angular, angular image slider with thumbnails

Features

  • NgSimpleSlideshow has no dependencies besides Angle. All animations are 100% CSS, so there is no need for @angular/animations.
  • Compiled and packaged in Angular Package Format v4.0 with ng package.
  • This package is compiled to es5 and is compatible with Angular Universal.
  • AOT ready.
  • Responds and picks up swipes from phones and tablets.
  • Lazy loading option to help speed initial page loading.

How to make use of it:

Installation:

npm i -S ng-simple-slideshow

1. Next, import the module:

import {SlideshowModule} from 'ng-simple-slideshow';

@NgModule({
  imports: [
    SlideshowModule,
    ...
  ],
  declarations: [
    ...
  ],
  exports: [
    ...
  ]
})
...

2. Usage

<slideshow [imageUrls]="imageUrlArray"></slideshow>
<slideshow [height]="height"
           [minHeight]="'525px'"
           [autoPlay]="true"
           [showArrows]="false"
           [imageUrls]="imageSources"
           [lazyLoad]="imageSources?.length > 1"
           [autoPlayWaitForLazyLoad]="true">
</slideshow>

slider-slideshow-for-angular

pretty slider/slideshow for angular, ng-simple-slideshow Plugin/Github


See Demo And Download

Official Website(dockleryxk): Click Here

This superior jQuery/javascript plugin is developed by dockleryxk. For extra advanced usage, please go to the official website.

Be First to Comment

    Leave a Reply

    Your email address will not be published. Required fields are marked *