Throb and tingle
Show aching or tinglingSwells to 108% and back in a steady rhythm, forever.
- Duration
- 1.2s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-jinjin {
0% { transform: scale(1, 1); }
50% { transform: scale(1.08, 1.08); }
100% { transform: scale(1, 1); }
}
.onoma-jinjin {
animation: onoma-jinjin 1.2s ease-in-out infinite both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-jinjin { animation: none; }
}