Throb heavily
A tense momentSwells to 114% and back in a steady rhythm, forever.
- Duration
- 1s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-dokudoku {
0% { transform: scale(1, 1); }
50% { transform: scale(1.14, 1.14); }
100% { transform: scale(1, 1); }
}
.onoma-dokudoku {
animation: onoma-dokudoku 1s ease-in-out infinite both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-dokudoku { animation: none; }
}