Zone Webmasters - Faire clignoter un élément

> Accueil > Codes sources > Code sources JavaScript > Inclassables > Faire clignoter un élément

Faire clignoter un élément

Par: NeoCrysis | Categorie: Inclassables

Description

Petit script permettant de faire clignoter un élément. (à perfectionner)

Code source

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)" />


Imprimer ce code source




Commentaires

Commentaires



aucun commentaire

Ajouter un commentaire

Vous devez être membre pour commenter ce code source.

>> Inscrivez vous




Faire un lien | Partenaires ©2005-2008 Rudy Onfroy Tous droits réservés Contact | RSS | Plan | Haut