Buzzer sounds
Wrong answer / errorShakes 3 times, starting at 12% and fading out.
- Duration
- 0.5s
- Repeats
- No
- Easing
- linear
- Animates
- Position · Rotation translate rotate
Show CSS
@keyframes onoma-buu {
0% { transform: translate(0%, 0%) rotate(0deg); }
14.29% { transform: translate(-12%, 0%) rotate(-4.2deg); }
28.57% { transform: translate(10%, 0%) rotate(3.5deg); }
42.86% { transform: translate(-8%, 0%) rotate(-2.8deg); }
57.14% { transform: translate(6%, 0%) rotate(2.1deg); }
71.43% { transform: translate(-4%, 0%) rotate(-1.4deg); }
85.71% { transform: translate(2%, 0%) rotate(0.7deg); }
100% { transform: translate(0%, 0%) rotate(0deg); }
}
.onoma-buu {
animation: onoma-buu 0.5s linear both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-buu { animation: none; }
}