-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanimations.css
90 lines (74 loc) · 1.48 KB
/
animations.css
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
@keyframes simpleform-rotateInDownRight {
from {
transform-origin: right bottom;
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
transform-origin: right bottom;
transform: none;
opacity: 1;
}
}
.simpleform-rotateInDownRight {
animation-name: simpleform-rotateInDownRight;
}
@keyframes simpleform-bounceOutDown {
20% {
transform: translate3d(0, 10px, 0);
}
40%, 45% {
opacity: 1;
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
transform: translate3d(0, 2000px, 0);
}
}
.simpleform-bounceOutDown {
animation-name: simpleform-bounceOutDown;
}
@keyframes simpleform-bounce {
from, 20%, 53%, 80%, to {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transform: translate3d(0,0,0);
}
40%, 43% {
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
transform: translate3d(0, -23px, 0);
}
70% {
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
transform: translate3d(0, -12px, 0);
}
90% {
transform: translate3d(0,-4px,0);
}
}
.simpleform-bounce {
animation-name: simpleform-bounce;
transform-origin: center bottom;
}
@keyframes simpleform-fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
.simpleform-fadeOut {
animation-name: simpleform-fadeOut;
}
@keyframes simpleform-fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.simpleform-fadeIn {
animation-name: simpleform-fadeIn;
}