Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to stop slider when mouse hover?

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
});
like image 222
AjiKir Avatar asked Jul 23 '13 14:07

AjiKir


1 Answers

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.

like image 111
krisnoble Avatar answered Oct 19 '22 14:10

krisnoble