I want to hide the cursor permanently in TypedJS i.e. I don't want it to blink/show as it types. I have found some tutorials on how to hide it on complete but not how to hide it since beginning. How to achieve it?
How to hide the cursor permanently in Typed JS
3.5k Views Asked by Sourav Das At
2
There are 2 best solutions below
0

Deleting typed::after
from css will help.
.typed::after {
content: '|';
display: inline;
-webkit-animation: blink 0.7s infinite;
-moz-animation: blink 0.7s infinite;
animation: blink 0.7s infinite;
}
You can try it here.
Just use the
showCursor
option.