You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using the angular slick in the Angular 10 project. For the desktop version, it's working fine. But for the responsive, it's not working. I'm using the object as follows:
Hi,
I'm using the angular slick in the Angular 10 project. For the desktop version, it's working fine. But for the responsive, it's not working. I'm using the object as follows:
slideConfig = {
slidesToShow: 3,
slidesToScroll: 1,
autoplay: true,
dots: true,
responsive: [
{
breakpoint: 1024,
settings: {
slidesToShow: 2,
slidesToScroll: 2,
dots: true,
},
},
{
breakpoint: 600,
settings: {
slidesToShow: 2,
slidesToScroll: 2,
},
},
{
breakpoint: 480,
settings: {
slidesToShow: 1,
slidesToScroll: 1,
},
},
{
breakpoint: 360,
settings: {
slidesToShow: 1,
slidesToScroll: 1,
},
},
],
};
Please help me with this issue.
The text was updated successfully, but these errors were encountered: