Angular Carousel

Simple and leightweight Angular Carousel Component.

Usage/Examples

<angular-carousel>
<div *angularCarouselSlide>
Slide 1
</div>
<div *angularCarouselSlide>
Slide 2
</div>
<div *angularCarouselSlide>
Slide 3
</div>
</angular-carousel>

Options

[bullets] (boolean) (default: true)

Show or hide the bullets.

<angular-carousel [bullets]="false">
<!-- slides -->
</angular-carousel>

No Bullets

[infinite] (boolean) (default: false)

Enable or disable infinite sliding.

<angular-carousel [infinite]="true">
<!-- slides -->
</angular-carousel>

Infinite

[auto] (boolean) (default: false)

Enable or disable auto sliding.

<angular-carousel [auto]="true">
<!-- slides -->
</angular-carousel>

Auto

[duration] (number) (default: 5000)

Duration (in ms) of transition between slides (if [auto] is enabled)

<angular-carousel [duration]="2500">
<!-- slides -->
</angular-carousel>