62 lines
870 B
JavaScript
62 lines
870 B
JavaScript
/*
|
|
Name: Elements - Carousels - Examples
|
|
Written by: Okler Themes - (http://www.okler.net)
|
|
Theme Version: 8.0.0
|
|
*/
|
|
|
|
(function( $ ) {
|
|
|
|
'use strict';
|
|
|
|
/*
|
|
Carousel
|
|
*/
|
|
$('#carousel').owlCarousel({
|
|
loop: true,
|
|
responsive: {
|
|
0: {
|
|
items: 1
|
|
},
|
|
479: {
|
|
items: 1
|
|
},
|
|
768: {
|
|
items: 2
|
|
},
|
|
979: {
|
|
items: 3
|
|
},
|
|
1199: {
|
|
items: 6
|
|
}
|
|
},
|
|
navText: [],
|
|
margin: 10,
|
|
autoWidth: false,
|
|
items: 6,
|
|
rtl: ( $('html').attr('dir') == 'rtl' ) ? true : false
|
|
});
|
|
|
|
/*
|
|
Videos
|
|
*/
|
|
$('#videos').owlCarousel({
|
|
items:1,
|
|
merge:true,
|
|
loop:true,
|
|
margin:10,
|
|
video:true,
|
|
lazyLoad:true,
|
|
center:true,
|
|
responsive:{
|
|
480:{
|
|
items:2
|
|
},
|
|
600:{
|
|
items:4
|
|
}
|
|
},
|
|
rtl: ( $('html').attr('dir') == 'rtl' ) ? true : false
|
|
});
|
|
|
|
}).apply( this, [ jQuery ]); |