How to stop mouseIn animation midway for mouseOut animation?

This worked on preview mode, doesn’t seem to work on the live website… :frowning:

Also tried this, no success:

export function dayCard_mouseIn(event, $w) {
    $w("#dayName").hide("float", {"direction":"top", "duration":transitionSpeed/4})
}

export async function dayCard_mouseOut(event, $w) {
 await $w("#dayName").hide()
    $w("#dayName").show("float", {"direction":"top", "duration":transitionSpeed/4})
}