Shatter like glass
Break a lockBursts out to 170% and vanishes.
- Duration
- 0.36s
- Repeats
- No
- Easing
- ease-out
- Animates
- Scale · Opacity scale opacity
Show CSS
@keyframes onoma-parin {
0% { transform: scale(1, 1); opacity: 1; }
35% { transform: scale(1.35, 1.35); opacity: 1; }
100% { transform: scale(1.7, 1.7); opacity: 0; }
}
.onoma-parin {
animation: onoma-parin 0.36s ease-out both;
}
/* Reduced motion: only fade out */
@keyframes onoma-parin-fade { from { opacity: 1; } to { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
.onoma-parin { animation: onoma-parin-fade 0.2s ease-out both; }
}