From db00a368ba84359cd96e70ec4ecdb7ccbc658627 Mon Sep 17 00:00:00 2001 From: Gavin Elster Date: Fri, 18 May 2012 15:43:58 -0700 Subject: [PATCH] Added Missing Opera Animation bounceOutDown was missing Opera keyframes --- animate.css | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/animate.css b/animate.css index 93ac81e..d79ee71 100644 --- a/animate.css +++ b/animate.css @@ -2699,6 +2699,22 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI } } +@-o-keyframes bounceOutDown { + 0% { + -o-transform: translateY(0); + } + + 20% { + opacity: 1; + -o-transform: translateY(-20px); + } + + 100% { + opacity: 0; + -o-transform: translateY(2000px); + } +} + @keyframes bounceOutDown { 0% { transform: translateY(0); @@ -2719,6 +2735,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI -webkit-animation-name: bounceOutDown; -moz-animation-name: bounceOutDown; -ms-animation-name: bounceOutDown; + -o-animation-name: bounceOutDown; animation-name: bounceOutDown; } @-webkit-keyframes bounceOutLeft {