texto parpadeante al click
Este es el texto que brilla
CODIGO
<script language="JavaScript1.2">
// ::::::::::::::::::::::::::::::::::::::::::::::::::
//
//
// ::::::::::::::::::::::::::::::::::::::::::::::::::
hex=255 // Valor inicial.
function fadetext(){
if(hex>0) { //Si el color aun no es negro
hex-=11; // Oscurece
document.getElementById("ejemplo").style.color="rgb("+hex+","+hex+","+hex+")";
setTimeout("fadetext()",20); //Intervalo de tiempo
}
else
hex=255 //Borra el valor
}
</script>
<div id="ejemplo" style="width:100%"><h3>Este es el texto que brilla </h3></div>
<button onclick="fadetext()">Haz brillar el texto</button>
<script language="JavaScript1.2">
// ::::::::::::::::::::::::::::::::::::::::::::::::::
//
//
// ::::::::::::::::::::::::::::::::::::::::::::::::::
hex=255 // Valor inicial.
function fadetext(){
if(hex>0) { //Si el color aun no es negro
hex-=11; // Oscurece
document.getElementById("ejemplo").style.color="rgb("+hex+","+hex+","+hex+")";
setTimeout("fadetext()",20); //Intervalo de tiempo
}
else
hex=255 //Borra el valor
}
</script>
<div id="ejemplo" style="width:100%"><h3>Este es el texto que brilla </h3></div>
<button onclick="fadetext()">Haz brillar el texto</button>