mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-13 07:41:08 +01:00
Rename bounceOutDown
This commit is contained in:
parent
b3fae9fe00
commit
40f1034405
1 changed files with 70 additions and 0 deletions
70
source/bounceOutDown.css
Normal file
70
source/bounceOutDown.css
Normal file
|
@ -0,0 +1,70 @@
|
|||
@-webkit-keyframes bounceOutDown {
|
||||
0% {
|
||||
-webkit-transform: translateY(0);
|
||||
}
|
||||
|
||||
20% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateY(-20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateY(2000px);
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes bounceOutDown {
|
||||
0% {
|
||||
-moz-transform: translateY(0);
|
||||
}
|
||||
|
||||
20% {
|
||||
opacity: 1;
|
||||
-moz-transform: translateY(-20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-moz-transform: translateY(2000px);
|
||||
}
|
||||
}
|
||||
|
||||
@-o-keyframes bounceOutDown {
|
||||
0% {
|
||||
-o-transform: translateY(0);
|
||||
}
|
||||
|
||||
20% {
|
||||
opacity: 1;
|
||||
-o-transform: translateY(-20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-o-transform: translateY(2000px);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes bounceOutDown {
|
||||
0% {
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
20% {
|
||||
opacity: 1;
|
||||
transform: translateY(-20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform: translateY(2000px);
|
||||
}
|
||||
}
|
||||
|
||||
.bounceOutDown {
|
||||
-webkit-animation-name: bounceOutDown;
|
||||
-moz-animation-name: bounceOutDown;
|
||||
-o-animation-name: bounceOutDown;
|
||||
animation-name: bounceOutDown;
|
||||
}
|
Loading…
Reference in a new issue