Forget completely
Clear or resetDrifts 6% upward as it fades out.
- Duration
- 0.8s
- Repeats
- No
- Easing
- ease-in
- Animates
- Position · Opacity translate opacity
Show CSS
@keyframes onoma-kerori {
0% { transform: translate(0%, 0%); opacity: 1; }
100% { transform: translate(0%, -6%); opacity: 0; }
}
.onoma-kerori {
animation: onoma-kerori 0.8s ease-in both;
}
/* Reduced motion: only fade out */
@keyframes onoma-kerori-fade { from { opacity: 1; } to { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
.onoma-kerori { animation: onoma-kerori-fade 0.2s ease-out both; }
}