How to keep the rotation of the images, even with mouse hover?

1

My images from the main screen of the site change after 5 seconds using fade effect, but when we stop the mouse on the screen, they stop rotating.

Here's some code snippet:

<li data-transition="fade" data-slotamount="7"
  data-masterspeed="2000" data-thumb="img/backgrounds/bg-1.jpg"
  data-delay="10000" data-saveperformance="on"
  data-title="Viagens tornam-se inesquecíveis">
<img src="img/backgrounds/bg-1.jpg" alt="slidebg1"
  data-bgposition="center top" data-bgfit="cover"
  data-bgrepeat="no-repeat">
<!-- Home Heading -->

How do I do this?

    
asked by anonymous 21.06.2017 / 22:00

1 answer

3

The page uses a component called "Revolution Responsive jQuery Slider" . According to the documentation, there is a startup parameter called onHoverStop responsible for stopping the timer (which changes the images) when the mouse pointer is over the image. Valid values for this parameter are on (default) and off .

So, pass on the call of the .Revolution({}) constructor to onHoverStop: off, , and your problem should resolve.

    
21.06.2017 / 22:46