From 85e0ee212ba1cb37903296543f0dd01a84a1eefb Mon Sep 17 00:00:00 2001 From: Nick Sahler Date: Sat, 8 Feb 2014 09:08:18 -0500 Subject: [PATCH] Fixed bug in Chrome Fixed bug in Chrome where opacity is reverted back after 50%. (If I set an object to have 0 opacity then play the animation/apply the class, the object disappears when it is complete). This does not change the animation but prevents the bug from happening. --- source/bouncing_entrances/bounceIn.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/bouncing_entrances/bounceIn.css b/source/bouncing_entrances/bounceIn.css index f872596..8b407c6 100644 --- a/source/bouncing_entrances/bounceIn.css +++ b/source/bouncing_entrances/bounceIn.css @@ -14,10 +14,11 @@ } 100% { + opacity: 1; transform: scale(1); } } .bounceIn { animation-name: bounceIn; -} \ No newline at end of file +}