I am using iDangerous slider and I want to make it responsive. I am using the plugins' breakingpoints.
What I want to achieve: On mobile screens only 1 image should be visible, on tablets 2, and on desktop 8.
I did it like this:
slidesPerColumn: 8,
breakpoints: {
700: {
slidesPerColumn: 1
},
1020: {
slidesPerColumn: 2
}
}
Now, it does work but only when I refresh the page. It only seems to catch one breaking point. When I go from mobile to tablet, it works. But when I go from mobile to desktop, it doesn't. Same happens the other way around. Desktop to tablet works, but desktop to mobile doesnt work.
From desktop to mobile, it would show two images instead of 1, and from mobile to desktop it shows 4 images instead of 8.
Anyone knows what could be wrong?
Thanks