mimitou85 Posted April 19, 2021 Share Posted April 19, 2021 Hello good peoples. I wanted to use the blink text on my forum . I have tried few html code and seems i can't sort it out alone. Please can you give me a hand i want to use it for my BOT group style. Thank you in advance Link to comment Share on other sites More sharing options...
0 Administrator Tony Posted April 19, 2021 Administrator Share Posted April 19, 2021 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. 1 Link to comment Share on other sites More sharing options...
0 mimitou85 Posted April 20, 2021 Author Share Posted April 20, 2021 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;'> Link to comment Share on other sites More sharing options...
0 Administrator Tony Posted April 20, 2021 Administrator Share Posted April 20, 2021 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;'> 1 Link to comment Share on other sites More sharing options...
0 mimitou85 Posted April 20, 2021 Author Share Posted April 20, 2021 Thank you for all your patience .Long life Web Flake 1 Link to comment Share on other sites More sharing options...
0 Administrator Tony Posted April 20, 2021 Administrator Share Posted April 20, 2021 The question(s) in this support topic have been answered and the topic author has resolved their issue. This topic is now closed. If you have other questions, please open a new topic. Link to comment Share on other sites More sharing options...
Question
mimitou85
Hello good peoples.
I wanted to use the blink text on my forum . I have tried few html code and seems i can't sort it out alone.
Please can you give me a hand i want to use it for my BOT group style.
Thank you in advance
Link to comment
Share on other sites
5 answers to this question
Recommended Posts