Skip to content

Commit 40f1034

Browse files
committed
Rename bounceOutDown
1 parent b3fae9f commit 40f1034

File tree

1 file changed

+70
-0
lines changed

1 file changed

+70
-0
lines changed

source/bounceOutDown.css

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
@-webkit-keyframes bounceOutDown {
2+
0% {
3+
-webkit-transform: translateY(0);
4+
}
5+
6+
20% {
7+
opacity: 1;
8+
-webkit-transform: translateY(-20px);
9+
}
10+
11+
100% {
12+
opacity: 0;
13+
-webkit-transform: translateY(2000px);
14+
}
15+
}
16+
17+
@-moz-keyframes bounceOutDown {
18+
0% {
19+
-moz-transform: translateY(0);
20+
}
21+
22+
20% {
23+
opacity: 1;
24+
-moz-transform: translateY(-20px);
25+
}
26+
27+
100% {
28+
opacity: 0;
29+
-moz-transform: translateY(2000px);
30+
}
31+
}
32+
33+
@-o-keyframes bounceOutDown {
34+
0% {
35+
-o-transform: translateY(0);
36+
}
37+
38+
20% {
39+
opacity: 1;
40+
-o-transform: translateY(-20px);
41+
}
42+
43+
100% {
44+
opacity: 0;
45+
-o-transform: translateY(2000px);
46+
}
47+
}
48+
49+
@keyframes bounceOutDown {
50+
0% {
51+
transform: translateY(0);
52+
}
53+
54+
20% {
55+
opacity: 1;
56+
transform: translateY(-20px);
57+
}
58+
59+
100% {
60+
opacity: 0;
61+
transform: translateY(2000px);
62+
}
63+
}
64+
65+
.bounceOutDown {
66+
-webkit-animation-name: bounceOutDown;
67+
-moz-animation-name: bounceOutDown;
68+
-o-animation-name: bounceOutDown;
69+
animation-name: bounceOutDown;
70+
}

0 commit comments

Comments
 (0)