Steal in softly
Enter quietlySlides in from 50% to the left and stops.
- Duration
- 1.2s
- Repeats
- No
- Easing
- cubic-bezier(.2,.8,.2,1)
- Animates
- Position · Opacity translate opacity
Show CSS
@keyframes onoma-sorori {
0% { transform: translate(-50%, 0%); opacity: 0; }
40% { transform: translate(-30%, 0%); opacity: 1; }
100% { transform: translate(0%, 0%); opacity: 1; }
}
.onoma-sorori {
animation: onoma-sorori 1.2s cubic-bezier(.2,.8,.2,1) both;
}
/* Reduced motion: only fade in */
@keyframes onoma-sorori-fade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
.onoma-sorori { animation: onoma-sorori-fade 0.2s ease-out both; }
}