From 60509a87cd5236913beca9b20887b2c7dff437cb Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 16:05:07 -0200 Subject: [PATCH] Add Opera support --- source/bounceInLeft.css | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/source/bounceInLeft.css b/source/bounceInLeft.css index 79ccc12..c5138e3 100644 --- a/source/bounceInLeft.css +++ b/source/bounceInLeft.css @@ -58,6 +58,26 @@ } } +@-o-keyframes bounceInLeft { + 0% { + opacity: 0; + -o-transform: translateX(-2000px); + } + + 60% { + opacity: 1; + -o-transform: translateX(30px); + } + + 80% { + -o-transform: translateX(-10px); + } + + 100% { + -o-transform: translateX(0); + } +} + @keyframes bounceInLeft { 0% { opacity: 0;