thdoan / magnify

A lightweight jQuery magnifying glass zoom plugin.
https://thdoan.github.io/magnify/
MIT License
243 stars 63 forks source link

Its not working properly on PNG images. #70

Open ahmadnaxir opened 2 years ago

ahmadnaxir commented 2 years ago

Its showing 2 pictures on hover when we apply magnify on PNG pictures.

ahmadnaxir commented 2 years ago

Its working fine on PNG pictures by applying this. $('html').on({ magnifystart: function() { $('.zoom').css('visibility', 'hidden'); }, magnifyend: function() { $('.zoom').css('visibility', 'visible'); } });