Promptly, without delay
Close right awayDrifts 30% upward as it fades out.
- Duration
- 0.3s
- Repeats
- No
- Easing
- ease-in
- Animates
- Position · Opacity translate opacity
Show CSS
@keyframes onoma-sassa {
0% { transform: translate(0%, 0%); opacity: 1; }
100% { transform: translate(0%, -30%); opacity: 0; }
}
.onoma-sassa {
animation: onoma-sassa 0.3s ease-in both;
}
/* Reduced motion: only fade out */
@keyframes onoma-sassa-fade { from { opacity: 1; } to { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
.onoma-sassa { animation: onoma-sassa-fade 0.2s ease-out both; }
}