Reputation: 1937
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
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