$(document).ready(function(){ $('.ctm').owlCarousel({ center: false, loop: true, items:4, margin: 0, stagePadding: 0, nav: false, //navText: ['', ''], responsive:{ 0:{ items: 1 }, 700:{ items: 3 }, 1000:{ items: 4 } }, autoplay:true, autoplayTimeout:3000, autoplayHoverPause:true }); $('.prof-card').hover(function() { $(this).find('.overlay-text').addClass('w3-animate-opacity'); }, function() { $(this).find('.overlay-text').removeClass('w3-animate-opacity'); }) });