I have the following code
<div class='fotosPlanos'>
<img
class='elevate-image'
src='_img/_fotos/corsa.jpg'
data-zoom-image='_img/_fotos/corsa.jpg'
/>
</div>
<script>
$('.elevate-image').ezPlus({
zoomType: 'inner',
cursor: 'crosshair'
});
</script>
It creates a zoom box on the container image.
But the problem is that as we reduce the size of the screen and consequently the size of the image, the zoom box should also reduce and not reduce.
Can be seen in
How do I link the size of the zoom box to the image size with the ez-plu plugin?