Résolu couleurs qui flash

Statut
N'est pas ouverte pour d'autres réponses.

Street420

Premium
Inscription
11 Août 2014
Messages
428
Réactions
105
Points
9 351
RGCoins
25
Salut je recherche le code qui fais que les nom flash sur xenforo , merci :)
 
Code:
Tu ajoutes ça dans EXTRA.css :
Code:
.username .style[idDuGroupe]
{
-webkit-animation-name: style[idDuGroupe];
-webkit-animation-duration:[durée]s;
-webkit-animation-timing-function: linear;
-webkit-animation-iteration-count: infinite;

-moz-animation-name: style[idDuGroupe];
-moz-animation-duration:[durée]s;
-moz-animation-timing-function: linear;
-moz-animation-iteration-count: infinite;

animation-name: style[idDuGroupe];
animation-duration:[durée]s;
animation-timing-function: linear;
animation-iteration-count: infinite;
}

@-moz-keyframes style[idDuGroupe]
{
0%{ color: red;}
50%{ color: blue;}
100%{ color: purple;}
}

@-webkit-keyframes style[idDuGroupe] {
0%{ color: red;}
50%{ color: blue;}
100%{ color: purple;}
}

@keyframes style[idDuGroupe]
{
0%{ color: red;}
50%{ color: blue;}
100%{ color: purple;}
}

Tu ajoutes sa dans EXTRA.css

Content d'avoir pu t'aider ;)
 
Statut
N'est pas ouverte pour d'autres réponses.
Retour
Haut