Motion by meaning
Heart beats softly
A fluttering heartSwells to 106% and back in a steady rhythm, forever.
- Duration
- 0.8s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-tokutoku {
0% { transform: scale(1, 1); }
50% { transform: scale(1.06, 1.06); }
100% { transform: scale(1, 1); }
}
.onoma-tokutoku {
animation: onoma-tokutoku 0.8s ease-in-out infinite both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-tokutoku { animation: none; }
}Pour with a glug
Pour data inFalls 60%, splats on landing and vanishes, forever.
- Duration
- 0.7s
- Repeats
- Yes
- Easing
- ease-in
- Animates
- Position · Scale · Opacity translate scale opacity
Show CSS
@keyframes onoma-tokutoku-2 {
0% { transform: translate(0%, -60%) scale(0.9, 1.1); opacity: 0; }
12% { transform: translate(0%, -49.71%) scale(0.9, 1.1); opacity: 1; }
70% { transform: translate(0%, 0%) scale(0.9, 1.1); opacity: 1; animation-timing-function: ease-out; }
80% { transform: translate(0%, 0%) scale(1.3, 0.6); opacity: 1; }
92% { transform: translate(0%, 0%) scale(1.4, 0.3); opacity: 0; }
100% { transform: translate(0%, 0%) scale(1.4, 0.3); opacity: 0; }
}
.onoma-tokutoku-2 {
animation: onoma-tokutoku-2 0.7s ease-in infinite both;
transform-origin: 50% 100%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-tokutoku-2 { animation: none; }
}Compare with similar motions