0

It is available in owl carousel 2, if click next button give additional page images? Because the default is only one next item slide.

An example of how it works:

[1,2,3] -> (next click) -> [2,3,4]

I want

[1,2,3] -> (next click) -> [4,5,6]

Thx

Adam Mikó
  • 13
  • 4

2 Answers2

0

Try to put this tree items [1,2,3] in one item

<div class="owl-carousel">
    <div class="item">
        [1,2,3]
    </div>
    <div class="item">
        [4,5,6]
    </div> 
</div>

and add in your JS the number of the items in this case

$('.owl-carousel').owlCarousel({
    loop:true,
    items:1 
})
dimitar
  • 1,019
  • 13
  • 19
0

Did you try the option slideBy?

slideBy: 3 (or "page")

Marin Atanasov
  • 3,266
  • 3
  • 35
  • 39
despecial
  • 143
  • 1
  • 7