I'd like to know if is posible (and how) to move more than one slide at a time.
From what I understood from the docs that's what scroll-num is for, but I couldn't make it work.
Since I'm using the carousel with breakpoints, I'd like to know if is it posible to move as many slides as the current break point is showing:
example:
breakpoint: NgxHmCarouselBreakPointUp[] = [
// move one slide
{
width: 360,
number: 1
},
// move two slides
{
width: 500,
number: 2
},
// move three slides
{
width: 768,
number: 3
},
];
I'm using only the previous and next arrows to move between slides. Not using the dots.
I'd like to know if is posible (and how) to move more than one slide at a time.
From what I understood from the docs that's what
scroll-numis for, but I couldn't make it work.Since I'm using the carousel with breakpoints, I'd like to know if is it posible to move as many slides as the current break point is showing:
example:
breakpoint: NgxHmCarouselBreakPointUp[] = [// move one slide{width: 360,number: 1},// move two slides{width: 500,number: 2},// move three slides{width: 768,number: 3},];I'm using only the previous and next arrows to move between slides. Not using the dots.