Softly appear
Show a cardSlowly appears from nothing over 1s.
- Duration
- 1s
- Repeats
- No
- Easing
- ease-out
- Animates
- Scale · Opacity scale opacity
Show CSS
@keyframes onoma-funwari {
0% { transform: scale(0.94, 0.94); opacity: 0; }
100% { transform: scale(1, 1); opacity: 1; }
}
.onoma-funwari {
animation: onoma-funwari 1s ease-out both;
}
/* Reduced motion: only fade in */
@keyframes onoma-funwari-fade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
.onoma-funwari { animation: onoma-funwari-fade 0.2s ease-out both; }
}