From 1a70219609fcc5815b7ffe384eef85e6f938435f Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 16:04:30 -0200 Subject: [PATCH] Add opera support --- source/bounceInDown.css | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/source/bounceInDown.css b/source/bounceInDown.css index 80ee77b..f724d4d 100644 --- a/source/bounceInDown.css +++ b/source/bounceInDown.css @@ -58,6 +58,26 @@ } } +@-o-keyframes bounceInDown { + 0% { + opacity: 0; + -o-transform: translateY(-2000px); + } + + 60% { + opacity: 1; + -o-transform: translateY(30px); + } + + 80% { + -o-transform: translateY(-10px); + } + + 100% { + -o-transform: translateY(0); + } +} + @keyframes bounceInDown { 0% { opacity: 0;