Motion by meaning
Flip through pages
Page throughFlips open 180° around its left edge.
- Duration
- 0.3s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- 3D turn rotateY
Show CSS
@keyframes onoma-parapara {
0% { transform: perspective(400px) rotateY(0deg); }
100% { transform: perspective(400px) rotateY(-180deg); }
}
.onoma-parapara {
animation: onoma-parapara 0.3s ease-in-out both;
transform-origin: 0% 50%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-parapara { animation: none; }
}Light rain falls
Items trickle inFalls 80%, 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-parapara-2 {
0% { transform: translate(0%, -80%) scale(0.9, 1.1); opacity: 0; }
12% { transform: translate(0%, -66.29%) 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-parapara-2 {
animation: onoma-parapara-2 0.7s ease-in infinite both;
transform-origin: 50% 100%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-parapara-2 { animation: none; }
}Compare with similar motions