jackmoore / zoom

jQuery plugin for zooming images on mouseover.
http://www.jacklmoore.com/zoom/
MIT License
1.54k stars 460 forks source link

Zoom not working with modals #96

Closed m-imran38 closed 8 years ago

m-imran38 commented 8 years ago

Hi, i am using the zoom feature in modal and it is not working. What should i do?

sudinem commented 7 years ago

How did you fixed this problem ??

m-imran38 commented 7 years ago

after modal loads and data rendered i have called the zoom function. here is the code that used:

$(".zoom-load").each(function () {
    $(this).parent().zoom({
        url: $(this).attr('data-zoom-image'),
        target: false,
        touch: false,
        on: 'mouseover',
        magnify: 1
    });
});
<a href="#"><img src="imagethumb.png" alt="image" class="media-object zoom-load" data-zoom-image="fullimage.png"></a>
sudinem commented 7 years ago

Thanks. I am using wheelzoom plugin. I think you have posted the code of another plugin. Would you please send me the fully functional code of that.

m-imran38 commented 7 years ago

sorry, but i haven't used the wheelzoom plugin.