Full code:
/**
- Adds an event handler that runs when the mouse pointer is moved
onto the element.
You can also define an event handler using the Properties and Events panel.
Read more
- @param {$w.MouseEvent} event
*/
export function step01_mouseIn ( event ) { $w ( ‘#step01’ ). hide ();
// This function was added from the Properties & Events panel. To learn more, visit Velo: Working with the Properties & Events Panel | Help Center | Wix.com
// Add your code for this event here:
}
/**
- Adds an event handler that runs when the mouse pointer is moved
off of the element.
You can also define an event handler using the Properties and Events panel.
Read more
- @param {$w.MouseEvent} event
*/
export function step01_mouseOut ( event ) { $w ( ‘#step01’ ). show ();
// This function was added from the Properties & Events panel. To learn more, visit Velo: Working with the Properties & Events Panel | Help Center | Wix.com
// Add your code for this event here:
}