UNPKG
@canner/react-typist
Version:
latest (2.1.0)
2.1.0
2.0.6
2.0.5
2.0.4
Typing animations with React
github.com/jstejada/react-typist
jstejada/react-typist
@canner/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
; } }