animate.css/source/sliders/slideInUp.css

15 lines
176 B
CSS
Raw Normal View History

2014-03-29 14:02:48 +01:00
@keyframes slideInUp {
0% {
2014-03-30 22:59:53 +02:00
transform: translateY(2000px);
2014-03-29 14:02:48 +01:00
}
100% {
opacity: 0;
2014-03-30 22:59:53 +02:00
transform: translateY(0);
2014-03-29 14:02:48 +01:00
}
}
.slideInUp {
animation-name: slideInUp;
}