I'm currently using the Slick Slider plugin and don't really want to add another plugin to achieve a Logo Ticker slide effect like seen here bxSlider. Any idea how to do it with Slick or if it's even possible?
Asked
Active
Viewed 7,714 times
2 Answers
3
Set autoplaySpeed to 0 and cssEase to 'linear' to achieve that effect.
$(function() {
$('.your-class').slick({
slidesToShow: 3,
slidesToScroll: 1,
autoplay: true,
autoplaySpeed: 0,
speed: 1000,
cssEase:'linear'
});
});
Example here: https://jsfiddle.net/ugtdjrjt/

Patrick64
- 430
- 6
- 12
0
There is an autoplay option at Slick Slider
$('.slider').slick({
slidesToShow: 3,
slidesToScroll: 1,
autoplay: true,
autoplaySpeed: 2000,
});
Is that maybe already everything you want?

progsource
- 649
- 7
- 12
-
No, it should scroll constantly like in the bxSlider demo. – Aley Nov 11 '14 at 16:52
-
Thats to fast and there is no option to make it slower :( – Aley Nov 11 '14 at 20:05