From 6a12bed41037f66fa0bd131bf414cccd58d4a010 Mon Sep 17 00:00:00 2001 From: Dan Eden Date: Wed, 29 Feb 2012 12:16:07 +0000 Subject: [PATCH] Fix timing-function issue. Default value is 'ease' anyway, so '-prefix-animation: 1s ease;' changed to '-prefix-animation-duration: 1s' --- animate.css | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/animate.css b/animate.css index 2f0c3c3..7b5d356 100644 --- a/animate.css +++ b/animate.css @@ -12,11 +12,11 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI */ .animated { - -webkit-animation: 1s ease; - -moz-animation: 1s ease; - -ms-animation: 1s ease; - -o-animation: 1s ease; - animation: 1s ease; + -webkit-animation-duration: 1s; + -moz-animation-duration: 1s; + -ms-animation-duration: 1s; + -o-animation-duration: 1s; + animation-duration: 1s; -webkit-animation-fill-mode: both; -moz-animation-fill-mode: both; -ms-animation-fill-mode: both; @@ -25,11 +25,11 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI } .animated.hinge { - -webkit-animation: 2s ease; - -moz-animation: 2s ease; - -ms-animation: 2s ease; - -o-animation: 2s ease; - animation: 2s ease; + -webkit-animation-duration: 2s; + -moz-animation-duration: 2s; + -ms-animation-duration: 2s; + -o-animation-duration: 2s; + animation-duration: 2s; } @-webkit-keyframes flash {