how to make blinking text in ur profile

Author Topic
hexadecimal16

Posted 2025-03-10 16:05:32

<blink> doesnt work (yea this was the first thing i tried)

css doesnt work

js not allowed

is there any way?

my html stuffs rn:

[snip]
C:\&gt;<span class="blinking-cursor">_</span>
<style>
[color and font stuffs here which is like a level on par with a hello world]
.blinking-cursor {
  font-weight: bold;
  animation: blink 1s step-end infinite;
}
</style>

any help?

Last edited on 2025-03-10 16:07:16

68 65 6C 6C 6F 20 77 6F 72 6C 64 20 69 6D 20 68 65 78
grrgyle

Posted 2025-03-10 18:14:44

You were close! Just missing the @keyframes. This should work:

<style>
@keyframes blink {
  0%, 100% {opacity: 1;}
  50% {opacity: 0;}
}
.blinking-cursor {
  font-weight: bold;
  animation: blink 1s step-end infinite;
}
</style>
C:\&gt;<span class="blinking-cursor">_</span>
my status blinky leading to my profile
hexadecimal16

Posted 2025-03-10 20:25:35

...im dumb

68 65 6C 6C 6F 20 77 6F 72 6C 64 20 69 6D 20 68 65 78
grrgyle

Posted 2025-03-11 16:38:13

Nahhh, you shine :)

my status blinky leading to my profile
hexadecimal16

Posted 2025-03-11 16:44:53

:)

68 65 6C 6C 6F 20 77 6F 72 6C 64 20 69 6D 20 68 65 78