From 35855f23b2db031862d15bee70402dce76553ce0 Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 16:03:51 -0200 Subject: [PATCH] Add Opera support --- source/bounceIn.css | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/source/bounceIn.css b/source/bounceIn.css index fa66777..16429d1 100644 --- a/source/bounceIn.css +++ b/source/bounceIn.css @@ -58,6 +58,26 @@ } } +@-o-keyframes bounceIn { + 0% { + opacity: 0; + -o-transform: scale(.3); + } + + 50% { + opacity: 1; + -o-transform: scale(1.05); + } + + 70% { + -o-transform: scale(.9); + } + + 100% { + -o-transform: scale(1); + } +} + @keyframes bounceIn { 0% { opacity: 0;