I'm using slick slider in my page and I need to zoom image on hovering image. So for this Im using a zoom jquery plugin and it's working in normal image but not working in slick slider. here is my code
<ul class="autoplay">
<li>
<div class="inner_item_img1">
<img src="images/krishna_kanhiya.jpg" class="light-zoom">
</div>
<div class="inner_item_txt">
<p>Krishna is always my source of inspiration.</p>
</div>
<div class="clearfix"></div>
</li>
js
and I added "lightzoom.js" this
$(document).ready(function () {
$('img.light-zoom').lightzoom({
zoomPower : 2, //Default
glassSize : 180, //Default
});
});