animate.css/source/bouncing_entrances/bounceInUp.css
Sarbbottam Bandyopadhyay 9310cf98ed Unified formatting across files
indent_style = space
indent_size = 2
insert_final_newline = true
each line within { } to specify single rule
2014-02-24 02:09:02 +05:30

24 lines
267 B
CSS

@keyframes bounceInUp {
0% {
opacity: 0;
transform: translateY(2000px);
}
60% {
opacity: 1;
transform: translateY(-30px);
}
80% {
transform: translateY(10px);
}
100% {
transform: translateY(0);
}
}
.bounceInUp {
animation-name: bounceInUp;
}