Calm and moist
Elegant appearanceSlowly appears from nothing over 1.8s.
- Duration
- 1.8s
- Repeats
- No
- Easing
- ease-out
- Animates
- Scale · Opacity scale opacity
Show CSS
@keyframes onoma-shittori {
0% { transform: scale(0.97, 0.97); opacity: 0; }
100% { transform: scale(1, 1); opacity: 1; }
}
.onoma-shittori {
animation: onoma-shittori 1.8s ease-out both;
}
/* Reduced motion: only fade in */
@keyframes onoma-shittori-fade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
.onoma-shittori { animation: onoma-shittori-fade 0.2s ease-out both; }
}