Add Opera support

This commit is contained in:
Jean Carlo Nascimento 2011-10-20 16:26:48 -02:00
parent f274bf12da
commit 9549c7bc37
1 changed files with 17 additions and 0 deletions

View File

@ -46,6 +46,22 @@
}
}
@-o-keyframes bounceOutUp {
0% {
-o-transform: translateY(0);
}
20% {
opacity: 1;
-o-transform: translateY(20px);
}
100% {
opacity: 0;
-o-transform: translateY(-2000px);
}
}
@keyframes bounceOutUp {
0% {
transform: translateY(0);
@ -66,5 +82,6 @@
-webkit-animation-name: bounceOutUp;
-moz-animation-name: bounceOutUp;
-ms-animation-name: bounceOutUp;
-o-animation-name: bounceOutUp;
animation-name: bounceOutUp;
}