Settings
Keyframes2 kf · 100%
25%
50%
75%
0%100%
Properties100%
Transform
Visual
Filter
Preview
Export
@keyframes fadeInUp {
0% {
transform: translate(0px, 20px);
opacity: 0;
}
100% {
transform: none;
opacity: 1;
}
}
.animated {
animation: fadeInUp 600ms ease-out 1 normal forwards;
}
/* Usage: add class="animated" to your element */