Motion by meaning
Crunch away
Busy crunchingSquishes 6% wide, then tall, back and forth, forever.
- Duration
- 0.26s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-karikari {
0% { transform: scale(1.06, 0.94); }
100% { transform: scale(0.94, 1.06); }
}
.onoma-karikari {
animation: onoma-karikari 0.26s ease-in-out infinite alternate both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-karikari { animation: none; }
}Irritable and edgy
Irritated characterTrembles about 3% in every direction, forever.
- Duration
- 0.24s
- Repeats
- Yes
- Easing
- linear
- Animates
- Position · Rotation translate rotate
Show CSS
@keyframes onoma-karikari-2 {
0% { transform: translate(0%, 0%) rotate(0deg); }
12.5% { transform: translate(3%, -1.8%) rotate(3.2deg); }
25% { transform: translate(-2.4%, 1.5%) rotate(-4deg); }
37.5% { transform: translate(1.8%, 2.7%) rotate(2deg); }
50% { transform: translate(-3%, -1.2%) rotate(-2.4deg); }
62.5% { transform: translate(2.4%, 0.9%) rotate(4deg); }
75% { transform: translate(-1.5%, -3%) rotate(-1.2deg); }
87.5% { transform: translate(0.9%, 2.1%) rotate(2.8deg); }
100% { transform: translate(0%, 0%) rotate(0deg); }
}
.onoma-karikari-2 {
animation: onoma-karikari-2 0.24s linear infinite both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-karikari-2 { animation: none; }
}Compare with similar motions