/var/www/clients/client1/web2/web/latynfusion/2024_borrar/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/latynfusion/2024_borrar/js/owl.carousel/demos/transitions.html (13016B)
Owl Carousel - CSS3 Transitions

CSS3 Transitions

Setup

From update 1.3.2 all transitions styles are moved out from main owl.carousel.css file to owl.transitions.css

Important! CSS3 transition works only in modern browsers that support CSS3 translate3d methods and only with single item on screen.

Use transitionStyle option to set transtion. There are four predefined transitions: "fade", "backSlide", goDown and scaleUp.

You can also build your own transition styles easily. For example by adding "YourName" value transitionStyle: "YourName", owlCarousel will add .owl-YourName-out class to previous slide and .owl-YourName-in to next slide. All transitions require "in" and "out" styles. Look into owl.carousel.css source for details.

$(document).ready(function() {

  var owl = $("#owl-demo");

  owl.owlCarousel({
    navigation : true,
    singleItem : true,
    transitionStyle : "fade"
  });

});
<div id="owl-demo" class="owl-carousel owl-theme">

  <div class="item"><img src="assets/fullimage4.jpg"></div>
  <div class="item"><img src="assets/fullimage5.jpg"></div>
  <div class="item"><img src="assets/fullimage6.jpg"></div>
  <div class="item"><img src="assets/fullimage7.jpg"></div>
  <div class="item"><img src="assets/fullimage1.jpg"></div>
  <div class="item"><img src="assets/fullimage2.jpg"></div>
  <div class="item"><img src="assets/fullimage3.jpg"></div>

</div>
#owl-demo .item img{
    display: block;
    width: 100%;
    height: auto;
}