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