blob: aae3a65536bdf19435a99705e73d08ed126a7131 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
@keyframes skip {
0% { left: 0px; }
100% { left: -432px; }
}
@keyframes play {
0% { left: -432px; }
100% { left: 0px; }
}
.shapeshifter {
width: 24px;
height: 24px;
overflow: hidden;
position: relative;
line-height: 0;
}
.shapeshifter svg {
position: absolute;
fill: currentColor;
left: 0;
animation-name: var(--ani-state);
animation-fill-mode: both;
animation-duration: 200ms;
animation-timing-function: steps(18);
animation-play-state: running;
}
|