Motion by meaning
Spin with a dry rattle
Idling or loadingSpins 1 turn(s) in place, repeating.
- Duration
- 0.6s
- Repeats
- Yes
- Easing
- cubic-bezier(.45,0,.55,1)
- Animates
- Rotation rotate
Show CSS
@keyframes onoma-karakara {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.onoma-karakara {
animation: onoma-karakara 0.6s cubic-bezier(.45,0,.55,1) infinite both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-karakara { animation: none; }
}Laugh heartily
Character laughingDips 8% 3 time(s), rests a moment, and repeats.
- Duration
- 0.6s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Position translate
Show CSS
@keyframes onoma-karakara-2 {
0% { transform: translate(0%, 0%); }
11.67% { transform: translate(0%, 8%); }
23.33% { transform: translate(0%, 0%); }
35% { transform: translate(0%, 8%); }
46.67% { transform: translate(0%, 0%); }
58.33% { transform: translate(0%, 8%); }
70% { transform: translate(0%, 0%); }
100% { transform: translate(0%, 0%); }
}
.onoma-karakara-2 {
animation: onoma-karakara-2 0.6s ease-in-out infinite both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-karakara-2 { animation: none; }
}Compare with similar motions