C
C
Captain Cocoa2015-10-20 13:23:19
JavaScript
Captain Cocoa, 2015-10-20 13:23:19

Vertical image carousel that starts on hover, what do you recommend?

Need a vertical carousel of images for a website. What would twist the pictures cyclically when hover started, when the hover was lost, it stopped. It seems to be nothing supernatural. But it was not possible to find a sensible script.
Advise who knows please.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
V
Vladislav Startsev, 2015-10-21
@esvlad

you find a carousel, then in js you say to work on hover and turn off when not hover
approx. with jquery

$('div').hover(function(){
  ... //запустить карусель
},
function(){
  ... //остановить карусель
});

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question