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