Reputation: 95
How do I stop the slider when I hover on the slider images? I have used following code
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js">
</script>
<script type="text/javascript" src="js/jquery.bxslider.min.js"></script>
$('.testimonials-slider').bxSlider({
slideWidth: 800,
minSlides: 1,
maxSlides: 1,
slideMargin: 32,
auto: true,
autoControls: true
});
Upvotes: 6
Views: 19898
Reputation: 176
You need to set the autoHover option to true e.g:
...
auto: true,
autoHover: true,
autoControls: true
...
See http://bxslider.com/options#autoHover for more info and other options.
Upvotes: 13