Pinned Elements won't get triggered on Hover.

Hi, I have created a pinned element which reveals 3 other elements when hovered on.
It works well but when I scroll down the page, it doesn’t work at all.

All four elements, including the hoverbox are pinned to the screen.

The box is on the right side of the page.

Here’s the code:

export function vectorImage12_mouseIn_1(event, $w) {
$w(“#box1”).show();
$w(“#box2”).show();
$w(“#box3”).show();

}
export function vectorImage12_mouseOut_1(event, $w) {
$w(“#box1”).hide();
$w(“#box2”).hide();
$w(“#box3”).hide();
}

Please Help.

Box 1,2 and 3 elements are ‘hidden on load’…

Hi Prashant,

We located the issue and working on a fix.
We will reply as soon as we have any feedback.
Best regards,

Okay, thank you.
Will it take more than a week?

Hi,

Unfortunately we are unable to provide an eta.
As a workaround, turn off the shape animations. This should temporarily solve the issue.

Best regards

Wow, Thanks, It works well without animation.
I’ll wait for the fix, Hope it comes soon.

Thanks Again Ido.