-
-
Notifications
You must be signed in to change notification settings - Fork 109
/
wiper.scss
41 lines (34 loc) · 1 KB
/
wiper.scss
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
31
32
33
34
35
36
37
38
39
40
41
@keyframes marp-incoming-transition-__builtin__wiper {
0% {
clip-path: polygon(50% 100%, 0% 100%, 0% 100%, 0% 100%, 0% 100%);
animation-timing-function: ease-in;
}
33% {
clip-path: polygon(50% 100%, 0% 100%, 0% 0%, 0% 0%, 0% 0%);
animation-timing-function: linear;
}
66% {
clip-path: polygon(50% 100%, 0% 100%, 0% 0%, 100% 0%, 100% 0%);
animation-timing-function: ease-out;
}
100% {
clip-path: polygon(50% 100%, 0% 100%, 0% 0%, 100% 0%, 100% 100%);
}
}
@keyframes marp-incoming-transition-backward-__builtin__wiper {
0% {
clip-path: polygon(50% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%);
animation-timing-function: ease-in;
}
33% {
clip-path: polygon(50% 100%, 100% 100%, 100% 0%, 100% 0%, 100% 0%);
animation-timing-function: linear;
}
66% {
clip-path: polygon(50% 100%, 100% 100%, 100% 0%, 0% 0%, 0% 0%);
animation-timing-function: ease-out;
}
100% {
clip-path: polygon(50% 100%, 100% 100%, 100% 0%, 0% 0%, 0% 100%);
}
}