Hi there, I am facing an issue that I could use some help with.
The problem pertains to the Slick Slider
I have configured a slider to autoplay, with pauseOnHover and pauseOnFocus both set to false.
Below is the code snippet:
$('.cc-slider-container').slick({
infinite: true,
slidesToShow: 1,
slidesToScroll: 1,
autoplay:true,
autoplaySpeed:5000,
pauseOnHover:false,
pauseOnFocus:false
});
This setup performs as expected on desktop where autoplay continues even when hovered over. However, on mobile devices (android) and iPad, if I touch the slider to scroll the page, the autoplay stops and does not resume.
Any suggestions or advice would be greatly appreciated!
I am using slick version 1.8.0,
Thank you in advance!