touchstart
and touchmove
listeners by default have passive:true
in AddEventListenerOptions
which means preventDefault can't be used and if so it will throw error [Intervention] Unable to preventDefault inside passive event listener due to target being treated as passive
. Add .owl-carousel {touch-action:manipulation;}
to prevent the error.owl-*
.owl-carousel.owl-theme .item
.item img
by default is 100% width.item
: .owl-carousel.owl-theme.lili-ex .item {padding:...}
#lili-ex-1 .item{ height: 10rem; }
.item
height is greater, it will be cut off. If parent height is greater, .item
is placed at the top$('#lili-ex-1').owlCarousel({ loop:true, margin:10, nav:true, ... });
.item
.item.bg-success
.item
.item.p-5
$('#lili-ex-2').owlCarousel({ center:true, ... });
max-width
on one or all .item
.item img.d-block.mx-auto.lili-max-width
$('#lili-ex-4').owlCarousel({loop:true,autoWidth:true, margin:10, items:3 });
option:items:4
, option:loop:true
won't have effect, the number of items depend on the wrapper's total width.$('#lili-ex-5').owlCarousel({ stagePadding: 20, loop:true, margin:10, items:3 });
The image is loaded as background image
Some content here
Some content here
Some content here
videoWidth: false, // Default false; Type: Boolean/Number
videoHeight: false, // Default false; Type: Boolean/Number
a
. This tag will display:none