g214/static/bower_components/animate.css/source/sliding_entrances/slideInUp.css

15 lines
197 B
CSS
Raw Normal View History

2018-08-20 08:21:25 +00:00
@keyframes slideInUp {
from {
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
transform: translate3d(0, 0, 0);
}
}
.slideInUp {
animation-name: slideInUp;
}