Files
2026-02-03 15:31:29 +05:00

145 lines
2.7 KiB
JavaScript

$(document).ready(function() {
$(".slide-two").owlCarousel({
loop: true,
margin: 0,
nav: false,
autoplay: true,
smartSpeed: 1000,
autoplayTimeout: 4000,
responsive: {
0: {
items: 1
},
401: {
items: 2
},
650: {
items: 2
},
1120: {
items: 5
},
1350: {
items: 6
}
}
});
$(".slide-slow").owlCarousel({
loop: true,
margin: 10,
nav: false,
autoplay: true,
smartSpeed: 1500,
autoplayTimeout: 5000,
responsive: {
0: {
items: 1
},
401: {
items: 2
},
600: {
items: 3
},
1000: {
items: 4
},
1350: {
items: 5
}
}
});
$(".slide-slow-prod").owlCarousel({
loop: true,
margin: 10,
nav: false,
autoplay: true,
smartSpeed: 3000,
autoplayTimeout: 5000,
responsive: {
0: {
items: 1
},
600: {
items: 1
},
1000: {
items: 1
}
}
});
$(".slide-prod1").owlCarousel({
loop: true,
margin: 10,
nav: false,
autoplay: true,
smartSpeed: 3000,
autoplayTimeout: 4000,
responsive: {
0: {
items: 1
},
600: {
items: 2
},
1000: {
items: 4
}
}
});
$(".slide-prod2").owlCarousel({
loop: true,
margin: 10,
nav: false,
autoplay: true,
smartSpeed: 1000,
autoplayTimeout: 4000,
responsive: {
0: {
items: 1
},
600: {
items: 2
},
1000: {
items: 4
}
}
});
$(".brand-slim").owlCarousel({
loop: true,
margin: 10,
nav: false,
autoplay: true,
smartSpeed: 800,
autoplayTimeout: 2000,
responsive: {
0: {
items: 0
},
385: {
items: 3
},
600: {
items: 6
},
950: {
items: 8
},
1180: {
items: 10
},
1425: {
items: 12
}
}
});
});