UNPKG
react-typist
Version:
latest (2.0.5)
next (2.0.5)
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
1.1.1
1.1.0
1.0.3
1.0.2
1.0.1
1.0.0
0.3.0
0.2.0
0.1.3
0.1.2
0.1.0
Typing animations with React
github.com/jstejada/react-typist
jstejada/react-typist
react-typist
/
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
; } }