Hello guys! I am writing here because i have added a new script in my website and when I hover with the mouse it works more slowly, but i don´t have code for this event. Why does it work more slowly with the mouse over? https://www.prot-on.com/Landing/index.html#quien https://www.prot-on.com/Landing/js/slick.min.js /* Logos */ $('.logos').slick({ infinite: true, speed: 15000, autoplay: true, autoplaySpeed: 0, slidesToShow: 6, slidesToScroll: 6, pauseOnMouseOver: true, responsive: [ { breakpoint: 600, settings: { speed: 15000, autoplay: true, autoplaySpeed: 0, slidesToShow: 2, slidesToScroll: 6, swipe: true, } }, { breakpoint: 480, settings: { speed: 15000, autoplay: true, autoplaySpeed: 0, slidesToShow: 2, slidesToScroll: 6, swipe: true, } } ] });
Can you provide more details? Hover over what? I have noticed that you have a moving stripe of logos and they got stucked for a while when your 3 slides slideshow changes. Is it what you are referring to?
Hi, thank you for you reply. Yes! I referring that I need the same move all the time. No Stop never. I don´t know why change it. Sorry for disturb
Hello David, why my script slow change during the process? I'm going crazy spinning about myself! Can you help me, please?
The slick library has a settings property called "pauseOnHover" which is set to "true" by default: http://kenwheeler.github.io/slick/ Try adding "pauseOnHover: false" to your settings JSON object.