add opera support

This commit is contained in:
Jean Carlo Nascimento 2011-10-20 16:59:39 -02:00
parent bbc35ee74b
commit d35f1d7a4f

View file

@ -46,6 +46,22 @@
}
}
@-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);
@ -66,5 +82,6 @@
-webkit-animation-name: bounceOutDown;
-moz-animation-name: bounceOutDown;
-ms-animation-name: bounceOutDown;
-o-animation-name: bounceOutDown;
animation-name: bounceOutDown;
}