top of page

$w.onReady(function () {

});

 

$w('#box19').onMouseIn((event, $w) => {

    $w('#box19').style.backgroundColor = "rgba(0,0,0,0.0)";

    setTimeout(() => $w("#box19").style.backgroundColor = "rgba(0,0,0,1.0)", 900);//this line is for the timing for it to reappear after; 900 is the milliseconds for the timing of the effect. You can remove this completely if you want for the image to only appear and not reappear

});

bottom of page