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:\><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 |
|
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:\><span class="blinking-cursor">_</span>
|
|
hexadecimal16
|
Posted 2025-03-10 20:25:35
...im dumb |
|
grrgyle
|
Posted 2025-03-11 16:38:13
Nahhh, you shine :) |
|
hexadecimal16
|
Posted 2025-03-11 16:44:53
:) |



