Faire un lien clignotant dans une page de style ou dans mon fichier web

Résolu
astuces_jeux Messages postés 731 Date d'inscription mercredi 15 novembre 2000 Statut Membre Dernière intervention 27 mai 2010 - 18 mars 2006 à 09:03
tonytruand Messages postés 175 Date d'inscription samedi 23 octobre 2004 Statut Membre Dernière intervention 8 mars 2015 - 18 mars 2006 à 09:07
je cherche comment faire un lien clignotant dans un fichier css


si vous ne savez pas dites moi comment en faire autrement

merci d'avance
@++
Astuces-jeux

2 réponses

astuces_jeux Messages postés 731 Date d'inscription mercredi 15 novembre 2000 Statut Membre Dernière intervention 27 mai 2010
18 mars 2006 à 09:04
quand je dis autrement je veux dire dans mon fichier web
3
tonytruand Messages postés 175 Date d'inscription samedi 23 octobre 2004 Statut Membre Dernière intervention 8 mars 2015
18 mars 2006 à 09:07
bonjour

<html>
<head>
<title>Fonction blink</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style>
A {
color:;
text-decoration:none;
}
</style>
<SCRIPT LANGUAGE="JavaScript">
/*
SCRIPT EDITE PAR THE MAGICIEN
*/
function initArray() {
for (var i = 0; i < initArray.arguments.length; i++) {
this[i] = initArray.arguments[i];
}
this.length = initArray.arguments.length;
}
var colors = new initArray(
"#FF0000",
"#0000FF"
);
delay = .2; // seconds
link = 2;
vlink = 4;
function linkDance() {
link = (link+1)%colors.length;
vlink = (vlink+1)%colors.length;
document.linkColor = colors[link];
document.vlinkColor = colors[vlink];
setTimeout("linkDance()",delay*2000);
}
linkDance();
</script>
</head>


[Toursdemagie.net>

</html>
0
Rejoignez-nous
A voir également