Motion by meaning
Dangle and swing
Hanging tag or signSwings 16° each way from its top edge, forever.
- Duration
- 1.4s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Rotation rotate
Show CSS
@keyframes onoma-burabura {
0% { transform: rotate(-16deg); }
100% { transform: rotate(16deg); }
}
.onoma-burabura {
animation: onoma-burabura 1.4s ease-in-out infinite alternate both;
transform-origin: 50% 0%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-burabura { animation: none; }
}Wander aimlessly
Idle waitingGlides 30% each way, smoothly, forever.
- Duration
- 3.5s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Position translate
Show CSS
@keyframes onoma-burabura-2 {
0% { transform: translate(-30%, 0%); }
100% { transform: translate(30%, 0%); }
}
.onoma-burabura-2 {
animation: onoma-burabura-2 3.5s ease-in-out infinite alternate both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-burabura-2 { animation: none; }
}Compare with similar motions