I’m trying to animate an image on mouse hover but it is not animating. Here is my code:
export function vectorImage7_mouseIn(event, $w) {
//Add your code for this event here:
$w(“#vectorImage7”).show(“Reveal”);
}
Thoughts?
I’m trying to animate an image on mouse hover but it is not animating. Here is my code:
export function vectorImage7_mouseIn(event, $w) {
//Add your code for this event here:
$w(“#vectorImage7”).show(“Reveal”);
}
Thoughts?
might be a typo with lower ‘r’ - please see the supported list here - HiddenMixin - Velo API Reference - Wix.com
Tried upper and lowercase, different animation name but still not seeing the animation on hover.
Hi,
You can’t run an event for hidden image.
You need to place the image inside a container box and the mouse in event should relate to the container.
Good luck