Hushed and still
Appear quietlySlowly appears from nothing over 2.2s.
- Duration
- 2.2s
- Repeats
- No
- Easing
- ease-out
- Animates
- Scale · Opacity scale opacity
Show CSS
@keyframes onoma-hissori {
0% { transform: scale(1, 1); opacity: 0; }
100% { transform: scale(1, 1); opacity: 1; }
}
.onoma-hissori {
animation: onoma-hissori 2.2s ease-out both;
}
/* Reduced motion: only fade in */
@keyframes onoma-hissori-fade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
.onoma-hissori { animation: onoma-hissori-fade 0.2s ease-out both; }
}