Answers for "how to stop auto slide in bootstrap 3 carousel"

0

bootstrap 4 stop auto slide

You just need to add one more attribute to your DIV tag which is 
 `data-interval="false"`
 So <!--Carousel Wrapper-->
 <div id="multi-item-example" class="carousel slide carousel-multi-item" data-ride="carousel" data-interval="false">

Note* : no need to touch JS!

<------------------ OR ---------------------->

$('.carousel').carousel({
  interval: false,
});
Posted by: Guest on September-28-2020
2

bootstrap stop carousel

<!--this is to never stop carousel Cycle -->
<!--data-pause="false" -->
<!--BOOTSTRAP 3 EXAMPLE:" -->
<div class="carousel slide wet-asphalt" data-ride="carousel" data-interval="500" data-pause="false">
<!--BOOTSTRAP 5 EXAMPLE:" -->
<div class="carousel slide wet-asphalt" data-ride="carousel" data-bs-interval="500" data-bs-pause="false">
Posted by: Guest on December-02-2021

Code answers related to "how to stop auto slide in bootstrap 3 carousel"

Browse Popular Code Answers by Language