Rise gently
Show a panelRises 30% from below at 94% scale while fading in.
- Duration
- 1s
- Repeats
- No
- Easing
- cubic-bezier(.2,.8,.2,1)
- Animates
- Position · Scale · Opacity translate scale opacity
Show CSS
@keyframes onoma-fuwari {
0% { transform: translate(0%, 30%) scale(0.94, 0.94); opacity: 0; }
100% { transform: translate(0%, 0%) scale(1, 1); opacity: 1; }
}
.onoma-fuwari {
animation: onoma-fuwari 1s cubic-bezier(.2,.8,.2,1) both;
}
/* Reduced motion: only fade in */
@keyframes onoma-fuwari-fade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
.onoma-fuwari { animation: onoma-fuwari-fade 0.2s ease-out both; }
}