Deeply felt
Leave a lingering feelSwells to 104% and back in a steady rhythm, forever.
- Duration
- 2.4s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-shimijimi {
0% { transform: scale(1, 1); }
50% { transform: scale(1.04, 1.04); }
100% { transform: scale(1, 1); }
}
.onoma-shimijimi {
animation: onoma-shimijimi 2.4s ease-in-out infinite both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-shimijimi { animation: none; }
}