Help with hover interaction and infinite scroll text

If you get the infinite scroll to work then it’s fairly simple. Just initially hide the container holding the scroll effect. Then put this into the code area (I’ll be calling the Image #hoverImage and the scroll container #scrollContainer

$w.onReady(function () {
    
    $w('#hoverImage').onMouseIn(()=>{
        $w('#scrollContainer').show()
    })
});