Shreyas
Shreyas

Reputation: 1937

Angular UI Bootstrap Carousel Pause

How to pause Angular UI Bootstrap Carousel. Also it'd be great if you provide something to reverse to carousel direction. Here is the link to docs.

Upvotes: 1

Views: 1386

Answers (1)

Kulbhushan Singh
Kulbhushan Singh

Reputation: 536

You can set interval attribute to -ve or 0 integer to pause the carousel

<uib-carousel interval="-1">

Obviously interval can be set with any data-bound variable with -ve or 0 as value

Upvotes: 2

Related Questions