Answer the question
In order to leave comments, you need to log in
How to update owl carousel inside Tabs UI when connecting tabs?
There is a customized owl carousel slider. Located inside the TABS UI tabs. The slider is adaptive, the required number of slides is configured for each resolution
//подключение табов
$("#tabs").tabs();
//подключение карусели
$(".owl-carousel").owlCarousel({
loop:false,
nav:false,
dots: true,
responsive:{
//с 1920 до 768
768:{
items:4
},
//с 768 до 575
575:{
items:3
},
//до с 575 до 399
399:{
items:2
},
//с 399 до 0
0:{
items:1
}
}
});
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question