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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
import { keyframes } from "@vanilla-extract/css";
/**
* Animation keyframes
* Used throughout the component library for consistent motion
*/
export const fadeIn = keyframes({
from: { opacity: 0 },
to: { opacity: 1 },
});
export const fadeOut = keyframes({
from: { opacity: 1 },
to: { opacity: 0 },
});
export const slideInFromRight = keyframes({
from: {
transform: "translateX(100%)",
opacity: 0,
},
to: {
transform: "translateX(0)",
opacity: 1,
},
});
export const slideInFromLeft = keyframes({
from: {
transform: "translateX(-100%)",
opacity: 0,
},
to: {
transform: "translateX(0)",
opacity: 1,
},
});
export const slideInFromTop = keyframes({
from: {
transform: "translateY(-100%)",
opacity: 0,
},
to: {
transform: "translateY(0)",
opacity: 1,
},
});
export const slideInFromBottom = keyframes({
from: {
transform: "translateY(100%)",
opacity: 0,
},
to: {
transform: "translateY(0)",
opacity: 1,
},
});
export const spin = keyframes({
from: { transform: "rotate(0deg)" },
to: { transform: "rotate(360deg)" },
});
export const pulse = keyframes({
"0%, 100%": {
opacity: 1,
},
"50%": {
opacity: 0.5,
},
});
export const bounce = keyframes({
"0%, 100%": {
transform: "translateY(-25%)",
animationTimingFunction: "cubic-bezier(0.8, 0, 1, 1)",
},
"50%": {
transform: "translateY(0)",
animationTimingFunction: "cubic-bezier(0, 0, 0.2, 1)",
},
});
export const scaleIn = keyframes({
from: {
transform: "scale(0.95)",
opacity: 0,
},
to: {
transform: "scale(1)",
opacity: 1,
},
});
export const scaleOut = keyframes({
from: {
transform: "scale(1)",
opacity: 1,
},
to: {
transform: "scale(0.95)",
opacity: 0,
},
});
export const shimmer = keyframes({
"0%": {
backgroundPosition: "-1000px 0",
},
"100%": {
backgroundPosition: "1000px 0",
},
});
|