Blown up big
Emphasize a headlineSwells softly to 130% and back.
- Duration
- 1s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-dekadeka {
0% { transform: scale(1, 1); }
50% { transform: scale(1.3, 1.3); }
100% { transform: scale(1, 1); }
}
.onoma-dekadeka {
animation: onoma-dekadeka 1s ease-in-out both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-dekadeka { animation: none; }
}