0
How to remove the automatic slide from the Bootstrap slide? I have a Carousel that is working perfectly, but I need it to stay static and only change the images when you click on the right or left arrows.
0
How to remove the automatic slide from the Bootstrap slide? I have a Carousel that is working perfectly, but I need it to stay static and only change the images when you click on the right or left arrows.
2
Just add the data-interval attribute and enter the value 0 (false):
<div class="carousel slide" data-ride="carousel" data-interval="0">
Browser other questions tagged bootstrap slide carousel
You are not signed in. Login or sign up in order to post.
Dude, I put the code like you said but it’s still changing itself:
– Edinho Rodrigues
Dude, I put the code like you said but it still didn’t work: <script type="text/javascript"> $('.Carousel'). Carousel({ interval: false, }); </script>
– Edinho Rodrigues
I think it has to do with the name of the class you have in your house
– Miguel
If you can complete the question with the first part of the html of your sff Dashboard. Then I adjust my answer
– Miguel
What is the version of your bootstrap?
– Miguel
Bootstrap v3.3.6. I put javascript edited and still nothing.
– Edinho Rodrigues
I edited it, try it like this
– Miguel
Nothing yet. Keeps changing the slide
– Edinho Rodrigues
Make a mistake on your console?
– Miguel
Tested: http://jsfiddle.net/Q2TYv/2428/ . Results here
– Miguel
Dude, kid wrong. I was putting the script in the head and declared the jquery below. Now it worked, thanks
– Edinho Rodrigues