elevatezoom icon indicating copy to clipboard operation
elevatezoom copied to clipboard

Elevate zoom lens going outside my images

Open keithslater opened this issue 10 years ago • 3 comments

Hello,

I am using the zoomType lens and for some reason my lens goes outside my images when I move my mouse to end of the image.

Has anyone else experienced this?

keithslater avatar Apr 15 '14 20:04 keithslater

I did find containLensZoom however when I try to use it, the lens completely disappears.

keithslater avatar Apr 16 '14 15:04 keithslater

containLensZoom : true would solve it .

ramanamatya avatar Oct 10 '14 06:10 ramanamatya

From line:265 if(self.options.containLensZoom && self.options.zoomType == "lens"){ self.zoomContainer.css("overflow", "hidden"); } So containLensZoom : true does indeed add overflow:hidden.

The problem with overflow:hidden is that it causes the lens to disappear because of width: 0; height:0 on zoomContainer

mediaformat avatar Apr 19 '17 16:04 mediaformat