How to maintain the rotation of images, even with mouse Hover?

Asked

Viewed 54 times

1

My images of 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.

Follows excerpt from the code:

<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 that?

1 answer

3

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

So, pass the call from the .Revolution({}) the pair onHoverStop: off,, and your problem must be solved.

  • On the fly, Wtrmute... Boy, gave it right, good... Thank you very much, you gave me a great strength. Problem SOLVED!!!

Browser other questions tagged

You are not signed in. Login or sign up in order to post.