Bonk hard
Hit the edge / limitShakes 2 times, starting at 14% and fading out.
- Duration
- 0.5s
- Repeats
- No
- Easing
- linear
- Animates
- Position · Rotation translate rotate
Show CSS
@keyframes onoma-gotsun {
0% { transform: translate(0%, 0%) rotate(0deg); }
20% { transform: translate(-14%, 0%) rotate(-4.9deg); }
40% { transform: translate(10.5%, 0%) rotate(3.67deg); }
60% { transform: translate(-7%, 0%) rotate(-2.45deg); }
80% { transform: translate(3.5%, 0%) rotate(1.22deg); }
100% { transform: translate(0%, 0%) rotate(0deg); }
}
.onoma-gotsun {
animation: onoma-gotsun 0.5s linear both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-gotsun { animation: none; }
}