6.1.1 • Published 3 years ago

@silmar/ng-carousel v6.1.1

Weekly downloads
22
License
MIT
Repository
gitlab
Last release
3 years ago

@silmar/ng-carousel

npm (scoped) pipeline status NPM

Really simple carousel

Install

npm i @silmar/ng-carousel hammerjs
// or
yarn add @silmar/ng-carousel hammerjs

Usage

The very basic usage is as follows:

main.ts

// ....
import 'hammerjs';
// ....

app.module.ts

import {BrowserModule} from '@angular/platform-browser';
import {NgModule, HammerModule} from '@angular/core';

import {AppComponent} from './app.component';
import {NgCarouselModule} from '@silmar/ng-carousel';

@NgModule({
    declarations: [
        AppComponent
    ],
    imports: [
        BrowserModule,
        HammerModule, // <-- For Angular 9
        NgCarouselModule // <-- import the carousel module
    ],
    providers: [],
    bootstrap: [AppComponent]
})
export class AppModule {
}

app.component.html

<!-- this will create a carousel with 2 visible items per slide -->
<si-ng-carousel [visible]="2">
  <div *ngFor="let img of gallery" siCarouselItem>
    <img [src]="domS.bypassSecurityTrustResourceUrl(img)" style="height: 400px"/>
  </div>
</si-ng-carousel>

Demo

Visit the demo

6.1.0

3 years ago

6.1.1

3 years ago

6.0.1

4 years ago

6.0.0

4 years ago

5.0.0

4 years ago

4.0.1

5 years ago

4.0.0

5 years ago

3.1.1

5 years ago

3.1.0

5 years ago

3.0.1

5 years ago

3.0.0

5 years ago

2.0.10

5 years ago

2.0.9

5 years ago

2.0.7

5 years ago

2.0.8

5 years ago

2.0.6

5 years ago

2.0.5

6 years ago

2.0.4

6 years ago

2.0.3

6 years ago

2.0.2

6 years ago

2.0.1

6 years ago

2.0.0

6 years ago

1.9.4

6 years ago

1.9.3

6 years ago

1.9.1

6 years ago

1.9.0

6 years ago

1.8.0

6 years ago

1.7.5

6 years ago

1.7.4

7 years ago

1.7.3

7 years ago

1.7.2

7 years ago

1.7.1

7 years ago

1.7.0

7 years ago

1.6.4

7 years ago

1.6.2

7 years ago

1.6.1

7 years ago

1.6.0

7 years ago

1.5.0

7 years ago

1.4.19

7 years ago

1.4.18

7 years ago

1.4.16

7 years ago

1.4.15

7 years ago

1.4.14

7 years ago

1.4.13

7 years ago

1.4.10

7 years ago