Blink o lampeggiamento o intermittenza






<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento senza titolo</title>
<Style>
button, a {
font-size:28px;
font-weight:bold;
color:#CF0;
background-color:#00C;

}
</style>
<script>
function blinktext() {
var f = document.getElementById('announcement');
setInterval(function() {
f.style.visibility = (f.style.visibility == 'hidden' ? '' : 'hidden');
}, 1000/ 5);
}
</script>
</head>

<body onload="blinktext();">.

<button title="Agenda santi del giorno"
onClick="return NascondiMostra('collegamento');"><b>Onomastico</b> </button>


<a href="#">cial collegamento</a><br />
<marquee width="300" scrollamount="300" scrolldelay="1500" loop="7">Testo lampeggiante.</marquee>


<p id="announcement">Testo lampeggiante.</p>

</body>
</html>










( blinkolampeggiamentoointermittenza.html )- by Paolo Puglisi - Modifica del 2/5/2024