Snap and break
Lose your temperBursts out to 130% and vanishes.
- Duration
- 0.26s
- Repeats
- No
- Easing
- ease-out
- Animates
- Scale · Opacity scale opacity
Show CSS
@keyframes onoma-buchi {
0% { transform: scale(1, 1); opacity: 1; }
35% { transform: scale(1.15, 1.15); opacity: 1; }
100% { transform: scale(1.3, 1.3); opacity: 0; }
}
.onoma-buchi {
animation: onoma-buchi 0.26s ease-out both;
}
/* Reduced motion: only fade out */
@keyframes onoma-buchi-fade { from { opacity: 1; } to { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
.onoma-buchi { animation: onoma-buchi-fade 0.2s ease-out both; }
}