A bell keeps ringing
Signal an incoming callRattles 2% and 10° side to side, forever.
- Duration
- 0.2s
- Repeats
- Yes
- Easing
- linear
- Animates
- Position · Rotation translate rotate
Show CSS
@keyframes onoma-rinrin {
0% { transform: translate(0%, 0%) rotate(0deg); }
25% { transform: translate(2%, 0%) rotate(-10deg); }
50% { transform: translate(0%, 0%) rotate(0deg); }
75% { transform: translate(-2%, 0%) rotate(10deg); }
100% { transform: translate(0%, 0%) rotate(0deg); }
}
.onoma-rinrin {
animation: onoma-rinrin 0.2s linear infinite both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-rinrin { animation: none; }
}