最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - jQuery Slick Slider: How to make a logo ticker slider - Stack Overflow

programmeradmin3浏览0评论

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?

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?

Share asked Nov 11, 2014 at 16:33 AleyAley 8,6507 gold badges46 silver badges58 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 4

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/ugtdjrjt/

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?

发布评论

评论列表(0)

  1. 暂无评论