@xinan/ngx-owl-carousel
v1.0.1
Published
**Not working yet, please do not use for now**
Downloads
6
Readme
Owl Carousel for Angular
Not working yet, please do not use for now
I have been using Owl Carousel for several years since jQuery was still the "go to" option for frontend development. Even though it's not the case anymore but I still can't find any "modern" carousel library doing the job better than Owl Carousel.
The motivation for creating this Angular wrapper is to let the good old Owl Carousel shine again in Angular world.
There are already a few excellent Angular wrappers exists on npm but this one is going to focus on the following goals:
- Simplicity - get started in no time
- Flexibility - customisable options and templates, in Angular way
- Cleanness - no extra js/css configuration needed, no modification to angular.json
Install it
npm install jquery @xinan/ngx-owl-carousel
Import it
import { OwlCarouselModule } from '@xinan/ngx-owl-carousel';
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, OwlCarouselModule],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule {}
Use it
<owl-carousel [items]="items" [options]="options"></owl-carousel>
TODO: add more usage examples