This repository has been archived by the owner on Aug 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_animations.scss
79 lines (63 loc) · 1.62 KB
/
_animations.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
@keyframes moveInBottom {
0% {
opacity: 0;
/* animates in y direction 2rem, more in left in beginning */
/* transform: translateY(30px) */
transform: translateY(2rem)
}
100% {
opacity: 1;
/* Looks exactly the way in which it does right now */
transform: translate(0)
}
}
@keyframes appear {
0% {
opacity: 0;
/* animates in y direction 2rem, more in left in beginning */
/* transform: translateY(30px) */
}
100% {
opacity: 1;
/* Looks exactly the way in which it does right now */
}
}
@keyframes moveInTop {
0% {
opacity: 0;
/* animates in y direction 2rem, more in left in beginning */
/* transform: translateY(30px) */
transform: translateY(-2rem)
}
100% {
opacity: 1;
/* Looks exactly the way in which it does right now */
transform: translate(0)
}
}
@keyframes moveInBottomLight {
0% {
opacity: 0;
/* animates in the y direction 1rem, more in left in beginning */
/* transform: translateY(30px) */
transform: translateY(1rem)
}
100% {
opacity: 1;
/* Looks exactly the way in which it does right now */
transform: translate(0)
}
}
@keyframes moveInLeftLight {
0% {
opacity: 0;
/* animates in x direction, more in left in beginning */
/* transform: translateY(30px) */
transform: translateX(1rem)
}
100% {
opacity: 1;
/* Looks exactly the way in which it does right now */
transform: translate(0)
}
}