Mouse Hover a photo

-1
How can I zoom or make an image bigger as zoom when I hover a mouse-over it??
asked
2 answers
1

Hi Nesreen,

Zooming on hover can be done with CSS. See https://www.w3schools.com/howto/howto_css_zoom_hover.asp

Cheers, Andries

answered
0

If you don’t want to write your own CSS, you can do this.

The Bootstrap tooltip widget (with context) lets you add a hover.  You can set it to render as HTML, using an attribute on your entity that surrounds your image url with an <img> tag.

If this is a Mendix File entity object, you can access the url of the image with the GUID (retrievable using CommunityCommon’s getGUID java action).

https://{appname}.mendixcloud.com/file?guid={guid}&target=window

answered