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.