kingdido999 / zooming

🔍 Image zoom that makes sense.
https://kingdido999.github.io/zooming
MIT License
1.61k stars 121 forks source link

Acess the template wrapper #243

Closed Giovancruz closed 4 years ago

Giovancruz commented 4 years ago

How can i do to have acess on the div that wrapp the image on zoom?

I want to put a text like legend on user open zooming. But the div is created on click, without class or return in the onOpen function.

kingdido999 commented 4 years ago

Are you referring to the overlay div? Actually there is no wrapper for the image at all when zooming in. Depending on how do you want to place the text (whether fixed position or relative to the image), you can programmatically create the legend element inside the onOpen callback. Make sure the element has z-index value greater or equal to the image's (default value: 999).

Let me know if you need further help.