Add Opera support

This commit is contained in:
Jean Carlo Nascimento 2011-10-20 16:21:28 -02:00
parent 1d9b65f9f3
commit c45589b8be
1 changed files with 20 additions and 0 deletions

View File

@ -78,6 +78,26 @@
}
}
@-o-keyframes bounceOut {
0% {
-o-transform: scale(1);
}
25% {
-o-transform: scale(.95);
}
50% {
opacity: 1;
-o-transform: scale(1.1);
}
100% {
opacity: 0;
-o-transform: scale(.3);
}
}
@keyframes bounceOut {
0% {
transform: scale(1);