OnMouseIn from a certain direction

Hi…

Is there a way to trigger an event when the cursor hovers over an element but coming from a certain direction? For example, only when the cursor comes over the element from the bottom…
Thank you.

You can do it using an iframe or a custom element and code like this:
https://css-tricks.com/direction-aware-hover-effects/

as workaround , maybe you can also make it using pure Corvid by putting the element inside a bigger box that expands towards the bottom and create onMouseIn listeners for both the box and the element and see if they trigger together ( than it’s not from the bottom) or one after the other (but you’re better do it with iframe or custom element).