Motion by meaning
Ring out loud and long
Start or end signalSwings 26° from its top edge and gradually settles.
- Duration
- 2s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Rotation rotate
Show CSS
@keyframes onoma-kaan {
0% { transform: rotate(0deg); }
20% { transform: rotate(26deg); }
40% { transform: rotate(-15.6deg); }
60% { transform: rotate(9.1deg); }
80% { transform: rotate(-3.9deg); }
100% { transform: rotate(0deg); }
}
.onoma-kaan {
animation: onoma-kaan 2s ease-in-out both;
transform-origin: 50% 0%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-kaan { animation: none; }
}Smack it high and far
Send or launchCrouches, then shoots 320% upward and vanishes.
- Duration
- 0.6s
- Repeats
- No
- Easing
- cubic-bezier(.6,0,.9,.4)
- Animates
- Position · Scale · Opacity translate scale opacity
Show CSS
@keyframes onoma-kaan-2 {
0% { transform: translate(0%, 0%) scale(1, 1); opacity: 1; animation-timing-function: ease-out; }
20% { transform: translate(0%, 8%) scale(1.08, 0.9); opacity: 1; }
100% { transform: translate(0%, -320%) scale(0.92, 1.12); opacity: 0; }
}
.onoma-kaan-2 {
animation: onoma-kaan-2 0.6s cubic-bezier(.6,0,.9,.4) both;
}
/* Reduced motion: only fade out */
@keyframes onoma-kaan-2-fade { from { opacity: 1; } to { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
.onoma-kaan-2 { animation: onoma-kaan-2-fade 0.2s ease-out both; }
}Compare with similar motions