| Author: | bfwg |
|---|---|
| Official Page: | Go to website |
| Publish Date: | February 20, 2020 |
| License: | MIT |
Description:
A simple, lightweight, responsive drag to scroll carousel for Angular 2+.
Installation:
# NPM $ npm install ngx-drag-scroll --save
Usage:
Import the library.
import { DragScrollModule } from 'ngx-drag-scroll';
Add the ‘DragScrollModule’ to your app module.
@NgModule({
declarations: [
AppComponent,
...
],
imports: [
DragScrollModule,
...
],
providers: [
],
bootstrap: [AppComponent]
})
export class AppModule { }