• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

AAC Znote Flashing text, blink effect

Seba1212

New Member
Joined
Nov 6, 2018
Messages
14
Reaction score
0
I am looking flashing text e.g <li><a href="support.php"><blink>Support</blink></a></li> but it does not work
 
Solution
Instead of <blink>STUFF TO BLINK HERE</blink>
Use: <span class="blink">STUFF TO BLINK HERE</span>

And add this to your layout .css file:
CSS:
span.blink {
  animation: blink 0.35s infinite;
  animation-direction: alternate;
}

@keyframes blink {
  from {opacity: 1;}
  to   {opacity: 0;}
}
Instead of <blink>STUFF TO BLINK HERE</blink>
Use: <span class="blink">STUFF TO BLINK HERE</span>

And add this to your layout .css file:
CSS:
span.blink {
  animation: blink 0.35s infinite;
  animation-direction: alternate;
}

@keyframes blink {
  from {opacity: 1;}
  to   {opacity: 0;}
}
 
Solution
You need to find the relevant piece of HTML code somewhere inside the layout folder(both the location and the code differs between layouts), and wrap the text you want to blink inside the provided tag above.
 
Back
Top