Answer the question
In order to leave comments, you need to log in
With what plugins can I make a voice like on the radio?
Hello. Suddenly, one of the sounders is sitting on the Toaster, please tell me, with the help of which plug-ins, you can make a voice like on the radio?
Answer the question
In order to leave comments, you need to log in
The slick plugin has "afterChange" and "beforeChange" events, starting from them, you can do something like this:
$("#slider").on('beforeChange', function(event, slick, currentSlide){
$(slick.$slides[currentSlide]).children('.text').fadeOut();
}
$("#slider").on('afterChange', function(event, slick, currentSlide){
$(slick.$slides[currentSlide]).children('.text').fadeIn();
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question