A bell rings clearly
A notification arrivesSwings 12° from its top edge and gradually settles.
- Duration
- 0.9s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Rotation rotate
Show CSS
@keyframes onoma-rin {
0% { transform: rotate(0deg); }
20% { transform: rotate(12deg); }
40% { transform: rotate(-7.2deg); }
60% { transform: rotate(4.2deg); }
80% { transform: rotate(-1.8deg); }
100% { transform: rotate(0deg); }
}
.onoma-rin {
animation: onoma-rin 0.9s ease-in-out both;
transform-origin: 50% 0%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-rin { animation: none; }
}