UNPKG
react-typist-updated
Version:
latest (2.0.6)
2.0.6
2.0.5
2.0.4
Typing animations with React
github.com/bkdev98/react-typist
bkdev98/react-typist
react-typist-updated
/
dist
/
Typist.css
14 lines
(12 loc)
•
234 B
CSS
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
.Typist
.Cursor
{
display
: inline-block; }
.Typist
.Cursor--blinking
{
opacity
:
1
;
animation
: blink
1s
linear infinite; }
@keyframes
blink {
0%
{
opacity
:
1
; }
50%
{
opacity
:
0
; }
100%
{
opacity
:
1
; } }