add opera support

This commit is contained in:
Jean Carlo Nascimento 2011-10-20 17:18:51 -02:00
parent e5a833b657
commit 480edb81ac
1 changed files with 13 additions and 0 deletions

View File

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