Skip to content

Commit 9f24225

Browse files
authored
Try steps animation
1 parent 966636e commit 9f24225

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

public/black-scholes.css

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
11
.attention-blink {
2-
animation: blink 0.5s linear 2;
2+
animation: blink 0.5s steps(2, end) 2;
33
}
44

55
@keyframes blink {
6-
25% {
7-
opacity: 0.5;
8-
}
9-
50% {
6+
0% {
107
opacity: 0;
118
}
12-
75% {
13-
opacity: 0.5;
9+
100% {
10+
opacity: 1;
1411
}
1512
}

0 commit comments

Comments
 (0)