@cazacovalex5 so do something like
$w.onReady(() => {
$w("#text55").hide();
setTimeout(showAndHide, 6000);
})
function showAndHide(){
$w("#text55").show().then(() => {
setTimeout(() => {$w("#text55").hide()}, 6000);
})
}
@cazacovalex5 so do something like
$w.onReady(() => {
$w("#text55").hide();
setTimeout(showAndHide, 6000);
})
function showAndHide(){
$w("#text55").show().then(() => {
setTimeout(() => {$w("#text55").hide()}, 6000);
})
}