slider
Wed May 18 2022 12:37:38 GMT+0000 (Coordinated Universal Time)
Saved by
@B2BForever_Dev
$(document).ready(function(){
$('.logo_index').slick({
slidesToShow: 5,
slidesToScroll: 1,
autoplay: true,
autoplaySpeed: 2000,
infinite: true,
arrows: true,
dots: true,
prevArrow: $('.button-prev'),
nextArrow: $('.button-next'),
responsive: [
{
breakpoint: 1024,
settings: {
slidesToShow: 3,
slidesToScroll: 3,
}
},
{
breakpoint: 600,
settings: {
slidesToShow: 2,
slidesToScroll: 2
}
},
{
breakpoint: 480,
settings: {
slidesToShow: 1,
slidesToScroll: 1
}
}
// You can unslick at a given breakpoint now by adding:
// settings: "unslick"
// instead of a settings object
]
});
})
content_copyCOPY
Comments