%PDF- %PDF-
| Direktori : /home/tjamichg/portal.tjamich.gob.mx/js/examples/ |
| Current File : /home/tjamichg/portal.tjamich.gob.mx/js/examples/examples.carousels.js |
/*
Name: Elements - Carousels - Examples
Written by: Okler Themes - (http://www.okler.net)
Theme Version: 7.1.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 ]);