add opera support

This commit is contained in:
Jean Carlo Nascimento 2011-10-20 17:04:11 -02:00
parent 013cebf381
commit 6a133d5475
1 changed files with 13 additions and 0 deletions

View File

@ -34,6 +34,18 @@
}
}
@-o-keyframes fadeInDownBig {
0% {
opacity: 0;
-o-transform: translateY(-2000px);
}
100% {
opacity: 1;
-o-transform: translateY(0);
}
}
@keyframes fadeInDownBig {
0% {
opacity: 0;
@ -50,5 +62,6 @@
-webkit-animation-name: fadeInDownBig;
-moz-animation-name: fadeInDownBig;
-ms-animation-name: fadeInDownBig;
-o-animation-name: fadeInDownBig;
animation-name: fadeInDownBig;
}