Jump to content
WebFlake
  • 0

BLINK TEXT FOR MY FORUM?


mimitou85

Question

5 answers to this question

Recommended Posts

  • 0
  • Administrator

This should get you started.

Add to custom.css:

/* @group Blink */
.blink {
	-webkit-animation: blink .75s linear infinite;
	-moz-animation: blink .75s linear infinite;
	-ms-animation: blink .75s linear infinite;
	-o-animation: blink .75s linear infinite;
	 animation: blink .75s linear infinite;
}
@-webkit-keyframes blink {
	0% { opacity: 1; }
	50% { opacity: 1; }
	50.01% { opacity: 0; }
	100% { opacity: 0; }
}
@-moz-keyframes blink {
	0% { opacity: 1; }
	50% { opacity: 1; }
	50.01% { opacity: 0; }
	100% { opacity: 0; }
}
@-ms-keyframes blink {
	0% { opacity: 1; }
	50% { opacity: 1; }
	50.01% { opacity: 0; }
	100% { opacity: 0; }
}
@-o-keyframes blink {
	0% { opacity: 1; }
	50% { opacity: 1; }
	50.01% { opacity: 0; }
	100% { opacity: 0; }
}
@keyframes blink {
	0% { opacity: 1; }
	50% { opacity: 1; }
	50.01% { opacity: 0; }
	100% { opacity: 0; }
}
/* @end */


Then add the following to the Group Formatting field for your bot's group:

<span class="blink">

 

Don't forget to add a closing </span> in the second field for group formatting.

  • Love 1
Link to comment
Share on other sites

  • 0
  • Administrator
1 minute ago, mimitou85 said:

Thank you so much work perfect. just one last thing. How to insert this color code to it. Sorry for disturbing tho with all my questions ..?

 


<span style='color: white; text-shadow: 0px 0px 10px #ffffff; font-weight: bold;'>

 

Easy.

<span class="blink" style='color: white; text-shadow: 0px 0px 10px #ffffff; font-weight: bold;'>

 

  • Love 1
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...