Skip to content

Commit

Permalink
add opera support
Browse files Browse the repository at this point in the history
  • Loading branch information
suissa committed Oct 20, 2011
1 parent 3d4f7d9 commit 0e12b1c
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions source/fadeOutUpBig.css
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,18 @@
}
}

@-o-keyframes fadeOutUpBig {
0% {
opacity: 1;
-o-transform: translateY(0);
}

100% {
opacity: 0;
-o-transform: translateY(-2000px);
}
}

@keyframes fadeOutUpBig {
0% {
opacity: 1;
Expand All @@ -50,5 +62,6 @@
-webkit-animation-name: fadeOutUpBig;
-moz-animation-name: fadeOutUpBig;
-ms-animation-name: fadeOutUpBig;
-o-animation-name: fadeOutUpBig;
animation-name: fadeOutUpBig;
}

0 comments on commit 0e12b1c

Please sign in to comment.