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.
This commit is contained in:
Nick Sahler 2014-02-08 09:08:18 -05:00
parent f59567e4c7
commit 85e0ee212b

View file

@ -14,10 +14,11 @@
}
100% {
opacity: 1;
transform: scale(1);
}
}
.bounceIn {
animation-name: bounceIn;
}
}