Snug and cozy
Relaxed characterSlowly grows 5% while fading a little, then returns, forever.
- Duration
- 2.6s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-nukunuku {
0% { transform: scale(1, 1); }
100% { transform: scale(1.05, 1.05); }
}
.onoma-nukunuku {
animation: onoma-nukunuku 2.6s ease-in-out infinite alternate both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-nukunuku { animation: none; }
}