jQuery(document).ready(function ($) { // ===== CHECK: Owl loaded hai ya nahi ===== if (typeof $.fn.owlCarousel === 'undefined') { console.error('Owl Carousel not loaded'); return; } // Popular Slider $('.popular-slider').owlCarousel({ loop: true, margin: 20, dots: true, autoplay: true, autoplayTimeout: 5000, responsive: { 0: { items: 1 }, 600: { items: 2 }, 1000: { items: 3 } } }); // Logo Slider $('.logo-slider').owlCarousel({ loop: true, margin: 30, dots: false, autoplay: true, autoplayTimeout: 2000, responsive: { 0: { items: 2 }, 600: { items: 4 }, 1000: { items: 4 } } }); // Testimonial Slider if ($('.testimonial-slider').length) { $('.testimonial-slider').owlCarousel({ loop: true, margin: 20, dots: true, nav: false, autoplay: true, autoplayTimeout: 5000, autoplayHoverPause: true, smartSpeed: 800, responsive: { 0: { items: 1 }, 768: { items: 2 }, 1000: { items: 3 } } }); } // New Testimonial Slider if ($('.testimonial-new-slider').length) { $('.testimonial-new-slider').owlCarousel({ loop: true, margin: 20, dots: false, nav: true, navText: [ '', '' ], autoplay: true, autoplayTimeout: 3000, smartSpeed: 800, stagePadding: 50, responsive: { 0: { items: 1 }, 600: { items: 1 }, 768: { items: 2 }, 1024: { items: 2 }, 1200: { items: 3 } }, onInitialized: function () { $('.testimonial-new-card').each(function () { var text = $(this).find('.review-text'); if (text.length && text[0].scrollHeight > text[0].clientHeight) { text.after('Read More...'); } }); } }); }
Skip to content