/var/www/clients/client1/web2/web/latynplast/js/owl.carousel/demos
NameSizeModeActions
assets/-0755rm
json/-0755rm
autoHeight.html126640644editdlrm
click.html134220644editdlrm
custom.html148560644editdlrm
customJson.html117480644editdlrm
full.html116630644editdlrm
images.html119280644editdlrm
itemsCustom.html138850644editdlrm
json.html121780644editdlrm
lazyLoad.html143050644editdlrm
manipulations.html159510644editdlrm
navOnTop.html137400644editdlrm
navOnTop2.html119070644editdlrm
one.html113750644editdlrm
owlStatus.html157920644editdlrm
progressBar.html148650644editdlrm
randomOrder.html145830644editdlrm
scaleup.html117760644editdlrm
sync.html201010644editdlrm
transitions.html130160644editdlrm
Edit: /var/www/clients/client1/web2/web/latynplast/js/owl.carousel/demos/scaleup.html (11776B)
Owl Carousel - Items scale up

Auto Scale up Items

Setup

If you have less items in a viewport than declared and you don't want to auto-stretch items use itemsScaleUp:true.

$(document).ready(function() {

  $(".itemsScaleUp-true").owlCarousel({
    items : 7,
    itemsScaleUp:true
  });

  $(".itemsScaleUp-false").owlCarousel({
    items : 7
  });

});
<div id="owl-demo" class="itemsScaleUp-true owl-carousel">
  <div class="item"><img src="assets/owl1.jpg" alt="Owl Image"></div>
  <div class="item"><img src="assets/owl2.jpg" alt="Owl Image"></div>
  <div class="item"><img src="assets/owl3.jpg" alt="Owl Image"></div>
</div>

<div id="owl-demo" class="itemsScaleUp-false owl-carousel">
  <div class="item"><img src="assets/owl1.jpg" alt="Owl Image"></div>
  <div class="item"><img src="assets/owl2.jpg" alt="Owl Image"></div>
  <div class="item"><img src="assets/owl3.jpg" alt="Owl Image"></div>
</div>
#owl-demo .item{
  margin: 3px;
}
#owl-demo .item img{
  display: block;
  width: 100%;
  height: auto;
}