-
-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to make cursor blinking on the focus input? #11
Comments
Depends on what you mean by "blinking cursor":
.character--selected {
animation: blink 1s infinite;
}
@keyframes blink {
0% {
outline: orange 3px solid;
}
50% {
outline: orange 3px solid;
}
51% {
outline: none;
}
100% {
outline: none;
}
} |
Thanks I've figured it out using a similar solution |
@broodfusion were you able to make this look like a real cursor? |
Closed
I added a complete example to the docs. |
It's an example to use as a starting point. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
As title suggests, thanks
The text was updated successfully, but these errors were encountered: