I have a stack containing a iFrame that holds a Lottie animation and a text box, and want to link the Lottie animation that’s being played on hover. Is it possible with Velo to link the iFrame to an internal page?
I’m able to link the stack utilizing this code:
import wixLocation from ‘wix-location’;
$w.onReady( function () {
$w(“#box19”).onClick( (event) => {
wixLocation.to (“/home”);
})
});
but loose the link when hovering over the Lottie. I tried putting the Lottie in a container, but I seems to have the same issue.
Thanks in advance for any help,
Todd