animate.css/source/bouncing_entrances/bounceIn.css
Nick Sahler 85e0ee212b 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.
2014-02-08 09:08:18 -05:00

25 lines
248 B
CSS

@keyframes bounceIn {
0% {
opacity: 0;
transform: scale(.3);
}
50% {
opacity: 1;
transform: scale(1.05);
}
70% {
transform: scale(.9);
}
100% {
opacity: 1;
transform: scale(1);
}
}
.bounceIn {
animation-name: bounceIn;
}