Rip open hard
Unwrap a packageBursts out to 145% and vanishes.
- Duration
- 0.36s
- Repeats
- No
- Easing
- ease-out
- Animates
- Scale · Opacity scale opacity
Show CSS
@keyframes onoma-bari {
0% { transform: scale(1, 1); opacity: 1; }
35% { transform: scale(1.23, 1.23); opacity: 1; }
100% { transform: scale(1.45, 1.45); opacity: 0; }
}
.onoma-bari {
animation: onoma-bari 0.36s ease-out both;
}
/* Reduced motion: only fade out */
@keyframes onoma-bari-fade { from { opacity: 1; } to { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
.onoma-bari { animation: onoma-bari-fade 0.2s ease-out both; }
}