jackmoore / zoom

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

Zoom and prettyPhoto: issue with mouseover #102

Open paddelboot opened 8 years ago

paddelboot commented 8 years ago

Hi there,

I display images using prettyPhoto, within that lightbox the image can be zoomed using your plugin. However, the zoom does not work if the cursor rests upon the lightbox while it is rendering. I need to move the cursor outside of the lightbox and back over it for the zoom to kick in.

Is there a workaround, or can you adress the issue in the next update?

Thanks.

paddelboot commented 8 years ago

I tried solving it by using this hack:

$( '#my-container' ).zoom({ callback: function() { $( '#my-container' ).trigger( 'mouseenter' ); } });

...but of course now the image is always zoomed when opening the lightbox.