Motion by meaning
Gleam and shine
Brand new / cleanDims and shrinks 14%, then shines again, forever.
- Duration
- 0.8s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Rotation · Scale · Opacity rotate scale opacity
Show CSS
@keyframes onoma-pikapika {
0% { transform: rotate(0deg) scale(1, 1); opacity: 1; }
50% { transform: rotate(10deg) scale(0.86, 0.86); opacity: 0.79; }
100% { transform: rotate(0deg) scale(1, 1); opacity: 1; }
}
.onoma-pikapika {
animation: onoma-pikapika 0.8s ease-in-out infinite both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-pikapika { animation: none; }
}Lights flash on and off
Recording / callingBriefly dims to 30% and comes right back, forever.
- Duration
- 0.6s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Scale · Opacity scale opacity
Show CSS
@keyframes onoma-pikapika-2 {
0% { transform: scale(1, 1); opacity: 1; }
42% { transform: scale(1, 1); opacity: 1; }
50% { transform: scale(0.97, 0.97); opacity: 0.3; }
58% { transform: scale(1, 1); opacity: 1; }
100% { transform: scale(1, 1); opacity: 1; }
}
.onoma-pikapika-2 {
animation: onoma-pikapika-2 0.6s ease-in-out infinite both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-pikapika-2 { animation: none; }
}Compare with similar motions
Words for the same motion