Par: NeoCrysis | Categorie: Inclassables
Petit script permettant de faire clignoter un élément. (à perfectionner)
nombre_clignotement = 3;
function cligOn(what){
document.getElementById(what).style.display = "none"
compte++
timing = window.setTimeout(function() {cligOff(what);}, 200);
}
function cligOff(what){
document.getElementById(what).style.display = "block"
if (compte < nombre_clignotement)
timing = window.setTimeout(function() {cligOn(what);}, 200);
else window.clearTimeout(timing)
}
function clig(what)
{
compte = 0
timing = window.setTimeout(function() {cligOn(what);}, 200);
}
_____________________
EXEMPLE D'UTILISATION
_____________________
<img src="http://..." alt="" onClick="clig(this)" />
Faire un lien | Partenaires ©2005-2008 Rudy Onfroy Tous droits réservés Contact | RSS | Plan | Haut