Currently working on a website project for a client and utilizing Bootstrap to create a carousel feature. I am specifically using Bootstrap 3.0. After searching for a similar issue here, I found two cases that resemble mine but unfortunately have no solutions.
For reference, the URL is:
Everything is functioning properly except for the fact that the carousel seems to stop cycling once it reaches the last slide. I believe this might be an easy fix, but my expertise in JavaScript is limited at the moment.
Thank you in advance for any assistance provided, and feel free to request any specific code snippets!
EDIT:
The only adjustment made from the original Bootstrap JS was altering the interval value
Carousel.DEFAULTS = {
interval: 7000,
pause: 'hover',
wrap: true
}
Below is the markup code:
<div id="main-slider" class="carousel slide" data-ride="carousel">
<!-- Wrapper for slides -->
<div class="carousel-inner">
<div class="item active span12">
<div class="slider-imagery fadeIn fadeIn-3s fadeIn-Delay-3s">
<img src="http://realtormatchaz.com/wp-content/themes/wpbootstrap/img/slider-1.png" width="100%" />
</div>
</div>
<div class="item span12">
<div class="slider-imagery fadeIn fadeIn-3s fadeIn-Delay-3s">
<img src="http://realtormatchaz.com/wp-content/themes/wpbootstrap/img/slider-2.png" width="100%"/>
</div>
</div>
</div>
<!-- Controls -->
<a class="left carousel-control" href="#main-slider" data-slide="prev">
<span class="icon-prev"></span>
</a>
<a class="right carousel-control" href="#main-slider" data-slide="next">
<span class="icon-next"></span>
</a>
</div>