bootstrap 4 carousel stop auto slide code example
Example 1: bootstrap 4 stop auto slide
You just need to add one more attribute to your DIV tag which is
`data-interval="false"`
So
Note* : no need to touch JS!
<------------------ OR ---------------------->
$('.carousel').carousel({
interval: false,
});
Example 2: turn off auto slide bootstrap carousel
$('.carousel').carousel({
interval: false,
});
Tags:
Misc Example
Related
navbar examples html
how to pop 4 elements javascript code example
empty array check in es6 code example
bootstrap how to choose when to wrap columns code example
create threads in java code example
how to add project using git bash from computer folder on github code example
how to print array index in javascript code example
read csv python pandas part of file code example
css background transparent image code example
python choose random item from list code example
font family on body css code example
json array of objects php accessing code example
Recent Posts
Pandas how to find column contains a certain value
Recommended way to install multiple Python versions on Ubuntu 20.04
Build super fast web scraper with Python x100 than BeautifulSoup
How to convert a SQL query result to a Pandas DataFrame in Python
How to write a Pandas DataFrame to a .csv file in Python