A blade gleams sharply
Ready to goFlashes out to 118% for an instant, then returns.
- Duration
- 0.36s
- Repeats
- No
- Easing
- ease-out
- Animates
- Scale · Opacity scale opacity
Show CSS
@keyframes onoma-shakin {
0% { transform: scale(1, 1); opacity: 1; }
20% { transform: scale(1.18, 1.18); opacity: 0.35; }
50% { transform: scale(1, 1); opacity: 1; }
100% { transform: scale(1, 1); opacity: 1; }
}
.onoma-shakin {
animation: onoma-shakin 0.36s ease-out both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-shakin { animation: none; }
}