--- title: Video Demo subTitle: Video nav: demos description: Owl Carousel supports YouTube, Vimeo, and vzaar videos sort: 2 tags: - demo - plugin --- {{#markdown }} ### Overview Enable video option: ``` video:true ``` To add video into carousel just put ``. A tag is not mandatory, it can be any other tag but "owl-video" and href with url link is required. Additional video options: ``` videoWidth: false, // Default false; Type: Boolean/Number videoHeight: false, // Default false; Type: Boolean/Number ``` ### Setup ``` $('.owl-carousel').owlCarousel({ items:1, merge:true, loop:true, margin:10, video:true, lazyLoad:true, center:true, responsive:{ 480:{ items:2 }, 600:{ items:4 } } }) ``` ### html ``` ``` {{/markdown }}