Round and bright-eyed
Show an icon or avatarGrows from nothing to 124%, dips slightly, then settles.
- Duration
- 0.4s
- Repeats
- No
- Easing
- ease-out
- Animates
- Scale · Opacity scale opacity
Show CSS
@keyframes onoma-kuri {
0% { transform: scale(0, 0); opacity: 0; }
45% { transform: scale(1.24, 1.24); opacity: 1; animation-timing-function: ease-in-out; }
72% { transform: scale(0.92, 0.92); opacity: 1; }
100% { transform: scale(1, 1); opacity: 1; }
}
.onoma-kuri {
animation: onoma-kuri 0.4s ease-out both;
}
/* Reduced motion: only fade in */
@keyframes onoma-kuri-fade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
.onoma-kuri { animation: onoma-kuri-fade 0.2s ease-out both; }
}