A bell chimes
Notification arrivesSwings 18° from its top edge and gradually settles.
- Duration
- 1.2s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Rotation rotate
Show CSS
@keyframes onoma-sharan {
0% { transform: rotate(0deg); }
20% { transform: rotate(18deg); }
40% { transform: rotate(-10.8deg); }
60% { transform: rotate(6.3deg); }
80% { transform: rotate(-2.7deg); }
100% { transform: rotate(0deg); }
}
.onoma-sharan {
animation: onoma-sharan 1.2s ease-in-out both;
transform-origin: 50% 0%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-sharan { animation: none; }
}