-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Responsive Option doesn't work #45
Comments
Am having the same problem, did you find a solution for this. Thanks Stefan |
Any solution for responsive settings? I'm facing same issue |
Yes I did. Think i missunderstood the breakpoints, its means "use this until width reaches breakpoint" slideConfig = {
}; This config shows 1 Slide from 0 to 1024 and 3 slides when width is bigger than 1024 |
Did anyone find a solution ? |
100% working fine with following settings
|
Thanks, but it still doesn't work. But I think I have another issue. When I add breakpoints to the slider, it disappears (unslick) when the window reaches those breakpoints. Nevermind, I gave up and I chose another lib :) |
Come back... |
What worked for me was to use breakpoint values as a string. this.slideConfig = { |
responsive is definitely still broken |
Can you please help me how can we fix respnsive issue |
Hi, I used below config. My slider item removed on breakpoints. |
@qinwanguk your solution is 100% working but there is 1 mistake u hadnt given comma before responsive which throws error,so add it |
Trying to implement responsive behaviour in slider but when added responsive break points it doesn't initialise the slider. My slider config is below:--
this.slideConfig = {
slidesToShow: 14,
slidesToScroll: 14,
infinite: false,
dots: false,
draggable: false,
responsive: [
{
breakpoint: 1024,
settings: {
slidesToShow: 3,
slidesToScroll: 3,
infinite: true,
dots: true
}
},
{
breakpoint: 600,
settings: {
slidesToShow: 2,
slidesToScroll: 2
}
},
{
breakpoint: 360,
settings: {
slidesToShow: 5,
slidesToScroll: 5
}
}
// You can unslick at a given breakpoint now by adding:
// settings: "unslick"
// instead of a settings object
]
};
The text was updated successfully, but these errors were encountered: