Add a hyperlink

Is it possible to add a hyperlink to each text in the list while keeping the animation(s)?

let flyInShowOpts = {
“direction” : “bottom” ,
“duration” : 2000 ,
}
let flyOutShowOpts = {
“direction” : “top” ,
“duration” : 1500 ,
}

const textList = [ “the blank” , “kitchen” , “Pug” , “Dachshund” ];
let i = 0 ;
let interval = setInterval ( async function () {
$w ( ‘#text3’ ). text = textList [ i ++];
await $w ( “#text3” ). show ( “fly” , flyInShowOpts ). then ()
$w ( ‘#text3’ ). hide ( “fly” , flyOutShowOpts )
if ( i === textList . length ) i = 0 ;
}, 4500 )

instead of a normal text use —> html…

…try this one…

$w.onReady(()=>{
    $w('#text3').html=`<a href>${textList[i++]}</a>`;
});

EDIT: Also do not bump-up old posts!
Instead open your own ones, like you already did.
You can link related posts to your topic(issue), like…