BBCode de Clignotement
Posté : 20 févr. 2023, 16:10
Utilisation du BBCode :
Code HTML de remplacement :
Ligne d'aide :
Puis ajouter ce code au fichier
Code : Tout sélectionner
[clignote]{TEXT}[/clignote]
Code : Tout sélectionner
<span class="css3-blink" style="text-decoration:blink;">{TEXT}</span>
Code : Tout sélectionner
Faire clignoter du texte: [clignote]exemple de texte[/clignote]
Puis ajouter ce code au fichier
stylesheet.css
de votre style :
Code : Tout sélectionner
/* css pour element clignotant */
@-webkit-keyframes blinker {
from { opacity: 1.0; }
to { opacity: 0.0; }
}
.css3-blink {
-webkit-animation-name: blinker;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: cubic-bezier(1.0,0,0,1.0);
-webkit-animation-duration: 1s;
}
Sans oublier de
Et ce texte clignote - And this text is flashing
Et ce texte clignote - And this text is flashing