Cut off suddenly
Connection lostDrifts 4% upward as it fades out.
- Duration
- 0.2s
- Repeats
- No
- Easing
- ease-in
- Animates
- Position · Opacity translate opacity
Show CSS
@keyframes onoma-putsu {
0% { transform: translate(0%, 0%); opacity: 1; }
100% { transform: translate(0%, -4%); opacity: 0; }
}
.onoma-putsu {
animation: onoma-putsu 0.2s ease-in both;
}
/* Reduced motion: only fade out */
@keyframes onoma-putsu-fade { from { opacity: 1; } to { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
.onoma-putsu { animation: onoma-putsu-fade 0.2s ease-out both; }
}