-
-
Notifications
You must be signed in to change notification settings - Fork 185
Expand file tree
/
Copy pathanimation.js
More file actions
22 lines (20 loc) · 663 Bytes
/
animation.js
File metadata and controls
22 lines (20 loc) · 663 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
const animations = {
default:{
animation:"",
keyframes:""
},
grow_out_in: {
animation: `animation:grow-out-in 2s linear infinite alternate;`,
keyframes: `@keyframes grow-out-in{
0% {
box-shadow:0 2px 4px -2px rgba(0,0,0,.25);
transform:scale(.95);
}
100% {
box-shadow:0 0 4px 2px rgba(0,0,0,.25);
transform:scale(1);
}
}`,
},
};
module.exports=animations;